Skip to content

Commit

Permalink
Merge pull request #309 from dOpensource/v0.64
Browse files Browse the repository at this point in the history
V0.64
  • Loading branch information
mackhendricks committed Nov 27, 2020
2 parents 3558688 + 86f9fc5 commit b82146c
Show file tree
Hide file tree
Showing 55 changed files with 3,416 additions and 964 deletions.
1,683 changes: 1,639 additions & 44 deletions CHANGELOG.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
- ncannon01
- Nicole
- Omari S. King
- reqlez
- richard
- Richard
- Richard Bolaji
Expand Down
4 changes: 2 additions & 2 deletions HA/mysql/installAAGaleraReplication.sh
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ EOF
# on CentOS mariadb fresh install doesn't have socket connection
# we need this to allow unix socket as fallback (parsed last in configs)
if ! grep -q '\[mysqld\]' /etc/my.cnf; then
if ! grep -q '\[mysqld\]' /etc/my.cnf 2>/dev/null; then
(cat <<'EOF'
[mysqld]
user = mysql
Expand Down Expand Up @@ -527,7 +527,7 @@ EOF
# on CentOS mariadb fresh install doesn't have socket connection
# we need this to allow unix socket as fallback (parsed last in configs)
if ! grep -q '\[mysqld\]' /etc/my.cnf; then
if ! grep -q '\[mysqld\]' /etc/my.cnf 2>/dev/null; then
(cat <<'EOF'
[mysqld]
user = mysql
Expand Down
2 changes: 1 addition & 1 deletion HA/pacemaker/installKamCluster.sh
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ for NODE in ${ARGS[@]}; do
{ printerr "could not change hacluster user password"; exit 1; }
# hostnames are required even if not DNS resolvable (on each node)
if ! grep -q -E \$(join '|' \${HOST_LIST[@]}) /etc/hosts; then
if ! grep -q -E \$(join '|' \${HOST_LIST[@]}) /etc/hosts 2>/dev/null; then
i=0
while (( \$i < \${#HOST_LIST[@]} )); do
printf '%s\n' "\${HOST_LIST[\$i]} \${NODE_NAMES[\$i]}" >> /etc/hosts
Expand Down

0 comments on commit b82146c

Please sign in to comment.