Skip to content
Snippets Groups Projects

Eliminate scheduler

2 files
+ 5
5
Compare changes
  • Side-by-side
  • Inline

Files

+ 2
2
@@ -91,7 +91,7 @@ do
echo "Param: setting to AUTO on duplicity"
echo "$2" | grep "^[1-9][0-9]*[a-zA-Z]$" 2>/dev/null
if [ $? -ne 0 ]; then
echo "ERROR: the value after $1 must be a number and a letter (for unit); i.e. 1M for 1 month"
>&2 echo "ERROR: the value after $1 must be a number and a letter (for unit); i.e. 1M for 1 month"
exit 1
else
JOBDEF_TYPE=auto
@@ -112,7 +112,7 @@ do
bStart=1
;;
*)
echo "ERROR: parameter [$1] is unknown"
>&2 echo "ERROR: parameter [$1] is unknown"
showHelp
exit 1
esac
Loading