Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,3 @@ else
FLUSH PRIVILEGES;
EOSQL
fi

3 changes: 3 additions & 0 deletions root-common/usr/bin/run-mysqld
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
export_vars=$(cgroup-limits); export $export_vars
source ${CONTAINER_SCRIPTS_PATH}/common.sh
set -eu
if [[ -v DEBUG_IGNORE_SCRIPT_FAILURES ]]; then
set +e
fi

export_setting_variables

Expand Down
3 changes: 3 additions & 0 deletions root-common/usr/bin/run-mysqld-master
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
export_vars=$(cgroup-limits); export $export_vars
source ${CONTAINER_SCRIPTS_PATH}/common.sh
set -eu
if [[ -v DEBUG_IGNORE_SCRIPT_FAILURES ]]; then
set +e
fi

export_setting_variables

Expand Down
3 changes: 3 additions & 0 deletions root-common/usr/bin/run-mysqld-slave
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
export_vars=$(cgroup-limits); export $export_vars
source ${CONTAINER_SCRIPTS_PATH}/common.sh
set -eu
if [[ -v DEBUG_IGNORE_SCRIPT_FAILURES ]]; then
set +e
fi

export_setting_variables

Expand Down
3 changes: 3 additions & 0 deletions root-common/usr/share/container-scripts/mysql/helpers.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,7 @@ function log_volume_info {
shift
done
set -e
if [[ -v DEBUG_IGNORE_SCRIPT_FAILURES ]]; then
set +e
fi
}