Merge branch 'master' of gitlab.com:ArisuOngaku/server-scripts
This commit is contained in:
commit
fd57e42957
@ -12,7 +12,7 @@ function join {
|
|||||||
|
|
||||||
if ! lockfile-create -p -r 2 $0; then
|
if ! lockfile-create -p -r 2 $0; then
|
||||||
echo "Another backup is running, aborting"
|
echo "Another backup is running, aborting"
|
||||||
exit 1
|
exit 49
|
||||||
fi
|
fi
|
||||||
|
|
||||||
### Program arguments ###
|
### Program arguments ###
|
||||||
|
@ -1,20 +1,51 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
SCRIPT=$1
|
# Default values
|
||||||
shift
|
IGNORE_EXIST_CODE=0
|
||||||
|
SCRIPT="-1"
|
||||||
|
|
||||||
|
# Get arguments
|
||||||
|
while [ $# -gt 1 ]; do
|
||||||
|
ARG_NAME=$1
|
||||||
|
shift
|
||||||
|
ARG_VALUE=$1
|
||||||
|
shift
|
||||||
|
|
||||||
|
case $ARG_NAME in
|
||||||
|
--ignore-exit-code)
|
||||||
|
IGNORE_EXIT_CODE=$ARG_VALUE
|
||||||
|
;;
|
||||||
|
--script)
|
||||||
|
SCRIPT=$ARG_VALUE
|
||||||
|
break
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
|
# Exit if bad script
|
||||||
|
if [ "$SCRIPT" = "-1" ]; then
|
||||||
|
echo No script specified
|
||||||
|
echo "Sending error mail"
|
||||||
|
echo -e "No script specified\n\n\n $(ps $PPID)" | $(dirname $0)/mail.sh "[CRITITCAL] $(hostname) undefined script"
|
||||||
|
echo "Sent"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Create temp logfile
|
||||||
FILE_ID=$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1)
|
FILE_ID=$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1)
|
||||||
touch /tmp/$FILE_ID.log
|
touch /tmp/$FILE_ID.log
|
||||||
chmod a-rwx,u+r /tmp/$FILE_ID.log
|
chmod a-rwx,u+r /tmp/$FILE_ID.log
|
||||||
|
|
||||||
|
# Execute script with remaining arguments
|
||||||
$SCRIPT "$@" 2>&1 | tee /tmp/$FILE_ID.log
|
$SCRIPT "$@" 2>&1 | tee /tmp/$FILE_ID.log
|
||||||
ERR=${PIPESTATUS[0]}
|
ERR=${PIPESTATUS[0]}
|
||||||
OUTPUT=$(cat /tmp/$FILE_ID.log)
|
OUTPUT=$(cat /tmp/$FILE_ID.log)
|
||||||
rm /tmp/$FILE_ID.log
|
rm /tmp/$FILE_ID.log
|
||||||
|
|
||||||
if [ $ERR -ne 0 ]; then
|
# Send mail in case of error
|
||||||
|
if [ $ERR -ne 0 ] && [ "$ERR" != "$IGNORE_EXIT_CODE" ]; then
|
||||||
echo "Sending error mail"
|
echo "Sending error mail"
|
||||||
echo -e "An error occured during the execution of $SCRIPT ($ERR).\n\n$OUTPUT" | $(dirname $0)/mail.sh "$(hostname) $SCRIPT failure"
|
echo -e "An error occured during the execution of $SCRIPT ($ERR).\n\n\n$(ps $PPID)\n\n$OUTPUT" | $(dirname $0)/mail.sh "$(hostname) $SCRIPT failure"
|
||||||
echo "Sent"
|
echo "Sent"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user