Skip to content
Snippets Groups Projects
Commit 652e003f authored by Henrik tom Wörden's avatar Henrik tom Wörden
Browse files

MAINT: moved helper scripts to utils folder

parent 40b0d36a
No related branches found
No related tags found
No related merge requests found
...@@ -23,8 +23,8 @@ ...@@ -23,8 +23,8 @@
# #
#header for patch scripts #header for patch scripts
. ../../load_settings.sh . ../../utils/load_settings.sh
. ../../utils.sh . ../../utils/helpers.sh
USAGE="$1 [ --env=ENV_FILE ] [ --patch=PATCH ] [ --backupdir=BACKUPDIR ]\n\n" USAGE="$1 [ --env=ENV_FILE ] [ --patch=PATCH ] [ --backupdir=BACKUPDIR ]\n\n"
CMD_OPTIONS=$(cat <<EOF CMD_OPTIONS=$(cat <<EOF
......
...@@ -58,12 +58,11 @@ backup: ...@@ -58,12 +58,11 @@ backup:
EOF EOF
) )
# Config and command line parameter loading ################################### # Load settings from .config and defaults #####################################
. ../load_settings.sh
. ../.config # load useful functions #######################################################
. helpers.sh
# load useful stuff - parses the commandline parameters and so on...
. ../patches/utils/patch_header.sh
function backup() { function backup() {
NARG_NAME="$1" NARG_NAME="$1"
...@@ -75,7 +74,7 @@ function backup() { ...@@ -75,7 +74,7 @@ function backup() {
failure "dumpfile already exists." failure "dumpfile already exists."
fi fi
echo "Dumping database $NARG_NAME to $NARG_FILE ... " echo "Dumping database $NARG_NAME to $NARG_FILE ... "
$CMD_MYSQL_DUMP $MYSQL_CONNECTION_NO_DB $* --opt --default-character-set=utf8 --routines \ $MYSQLDUMP_CMD $MYSQL_CONNECTION_NO_DB $* --opt --default-character-set=utf8 --routines \
"$NARG_NAME" > "$NARG_FILE" "$NARG_NAME" > "$NARG_FILE"
if [[ "$YAML" == "true" ]] ; then if [[ "$YAML" == "true" ]] ; then
......
File moved
...@@ -18,8 +18,8 @@ ...@@ -18,8 +18,8 @@
# You should have received a copy of the GNU Affero General Public License # You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>. # along with this program. If not, see <https://www.gnu.org/licenses/>.
[[ -n "config.defaults" ]] && source "config.defaults" [[ -n "../config.defaults" ]] && source "../config.defaults"
[[ -n ".config" ]] && source ".config" [[ -n "../.config" ]] && source "../.config"
[[ -n "$ENV_FILE" ]] && source "$ENV_FILE" [[ -n "$ENV_FILE" ]] && source "$ENV_FILE"
if [[ -z "$DATABASE_NAME" && -z "$MYSQL_CONNECTION" ]] if [[ -z "$DATABASE_NAME" && -z "$MYSQL_CONNECTION" ]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment