diff options
author | ramon <ramongomez@us.es> | 2011-07-26 09:34:12 +0000 |
---|---|---|
committer | ramon <ramongomez@us.es> | 2011-07-26 09:34:12 +0000 |
commit | e64207e8e10d710e67234585c25f0718ecb599dd (patch) | |
tree | bf9bb7146079523851d47c76f50dd4f5d1c752d4 /admin/Sources/Services | |
parent | f3b1480e632b38395e407c85c190ec64eec45cc1 (diff) |
VersiĆ³n 1.0.2: corregir arranque de servicios en Ubuntu (modifica #414)
git-svn-id: https://opengnsys.es/svn/branches/version1.0@2211 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'admin/Sources/Services')
-rwxr-xr-x | admin/Sources/Services/opengnsys.init | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/admin/Sources/Services/opengnsys.init b/admin/Sources/Services/opengnsys.init index 838b1db2..34fdc30b 100755 --- a/admin/Sources/Services/opengnsys.init +++ b/admin/Sources/Services/opengnsys.init @@ -79,8 +79,9 @@ config() { case "$OSDISTRIB" in Ubuntu) INITFUNCTIONS=/lib/lsb/init-functions - DAEMONSTART="start_daemon" - DAEMONSTOP="killproc" + DAEMONSTART="start-stop-daemon --start --quiet --background --exec" + EXTRAOPTS="--" + DAEMONSTOP="start-stop-daemon --stop --quiet --oknodo --name" ACTIONMSG="log_daemon_msg" SUCCESSMSG="log_end_msg 0" FAILMSG="log_end_msg 1" @@ -88,6 +89,7 @@ config() { Fedora) INITFUNCTIONS=/etc/init.d/functions DAEMONSTART="daemon" + EXTRAOPTS="" DAEMONSTOP="killproc" ACTIONMSG="echo -n" SUCCESSMSG="success; echo" @@ -105,7 +107,7 @@ arranca_demonios() { if [ $RUN_OGADMSERVER = "yes" ] then $ACTIONMSG "Iniciando demonio: $SERVERNAME" - $DAEMONSTART $SERVERDAEMON $SERVERDAEMON_OPTIONS + $DAEMONSTART $SERVERDAEMON $EXTRAOPTS $SERVERDAEMON_OPTIONS [ $? = 0 ] && $SUCCESSMSG || $FAILMSG fi if [ $RUN_OGADMSERVER = "yes" ] && [ $RUN_OGADMREPO = "yes" ] @@ -115,7 +117,7 @@ arranca_demonios() { if [ $RUN_OGADMREPO = "yes" ] then $ACTIONMSG "Iniciando demonio: $REPONAME" - $DAEMONSTART $REPODAEMON $REPODAEMON_OPTIONS + $DAEMONSTART $REPODAEMON $EXTRAOPTS $REPODAEMON_OPTIONS [ $? = 0 ] && $SUCCESSMSG || $FAILMSG ############ ADV $ACTIONMSG "Iniciando demonio: $REPOAUXNAME" @@ -126,7 +128,7 @@ arranca_demonios() { if [ $RUN_OGADMAGENT = "yes" ] then $ACTIONMSG "Iniciando demonio: $AGENTNAME" - $DAEMONSTART $AGENTDAEMON $AGENTDAEMON_OPTIONS + $DAEMONSTART $AGENTDAEMON $EXTRAOPTS $AGENTDAEMON_OPTIONS [ $? = 0 ] && $SUCCESSMSG || $FAILMSG fi if [ $RUN_BTTRACKER = "yes" ] |