Upgrade script updates header too and adds KEEP_LOGGING

This commit is contained in:
deajan 2016-08-19 10:20:56 +02:00
parent a994e9a590
commit 99619f842d
1 changed files with 8 additions and 1 deletions

View File

@ -6,7 +6,7 @@ AUTHOR="(C) 2016 by Orsiris de Jong"
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
OLD_PROGRAM_VERSION="v1.0x-v1.1x"
NEW_PROGRAM_VERSION="v1.2x"
PROGRAM_BUILD=2016080901
PROGRAM_BUILD=2016081902 # Will go into config file rev
## type -p does not work on platforms other than linux (bash). If if does not work, always assume output is not a zero exitcode
if ! type "$BASH" > /dev/null; then
@ -371,6 +371,10 @@ function RewriteConfigFiles {
sed -i'.tmp' '/^PRESERVE_HARDLINKS=*/a\'$'\n''CHECKSUM=no\'$'\n''' "$config_file"
fi
if ! grep "^KEEP_LOGGING=" "$config_file" > /dev/null; then
sed -i'.tmp' '/^HARD_MAX_EXEC_TIME=*/a\'$'\n''KEEP_LOGGING=1801\'$'\n''' "$config_file"
fi
if ! grep "^MAX_WAIT=" "$config_file" > /dev/null; then
sed -i'.tmp' '/^MIN_WAIT=*/a\'$'\n''MAX_WAIT=300\'$'\n''' "$config_file"
fi
@ -387,6 +391,9 @@ function RewriteConfigFiles {
sed -i'.tmp' '/^STOP_ON_CMD_ERROR=*/a\'$'\n''RUN_AFTER_CMD_ON_ERROR=no\'$'\n''' "$config_file"
fi
# "onfig file rev" to deal with earlier variants of the file
sed -i'.tmp' '/onfig file rev/c\###### osync config file rev '$PROGRAM_BUILD "$config_file"
rm -f "$config_file.tmp"
}