Added missing options to subprocess in daemon mode
This commit is contained in:
parent
f962f86f30
commit
520c20659f
|
@ -4,7 +4,7 @@ PROGRAM="osync" # Rsync based two way sync engine with fault tolerance
|
||||||
AUTHOR="(C) 2013-2017 by Orsiris de Jong"
|
AUTHOR="(C) 2013-2017 by Orsiris de Jong"
|
||||||
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr"
|
||||||
PROGRAM_VERSION=1.2.1-rc1
|
PROGRAM_VERSION=1.2.1-rc1
|
||||||
PROGRAM_BUILD=2017053010
|
PROGRAM_BUILD=2017053002
|
||||||
IS_STABLE=yes
|
IS_STABLE=yes
|
||||||
|
|
||||||
##### Execution order #__WITH_PARANOIA_DEBUG
|
##### Execution order #__WITH_PARANOIA_DEBUG
|
||||||
|
@ -2247,12 +2247,15 @@ for i in "$@"; do
|
||||||
_NOLOCKS=true
|
_NOLOCKS=true
|
||||||
;;
|
;;
|
||||||
--errors-only)
|
--errors-only)
|
||||||
|
opts=$opts" --errors-only"
|
||||||
_LOGGER_ERR_ONLY=true
|
_LOGGER_ERR_ONLY=true
|
||||||
;;
|
;;
|
||||||
--summary)
|
--summary)
|
||||||
|
opts=$opts" --summary"
|
||||||
_SUMMARY=true
|
_SUMMARY=true
|
||||||
;;
|
;;
|
||||||
--no-prefix)
|
--no-prefix)
|
||||||
|
opts=$opts" --no-prefix"
|
||||||
_LOGGER_PREFIX=""
|
_LOGGER_PREFIX=""
|
||||||
;;
|
;;
|
||||||
--destination-mails=*)
|
--destination-mails=*)
|
||||||
|
|
Loading…
Reference in New Issue