Committed by
Gerrit Code Review
Fix issue with debug option not being picked up by init.d script
Change-Id: I47499ae253484d34d677c339b34fec6e53addcbe
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -20,7 +20,7 @@ start () { | ... | @@ -20,7 +20,7 @@ start () { |
20 | mkdir -p $ONOS_HOME/config 2>/dev/null && chown $ONOS_USER.$ONOS_GROUP $ONOS_HOME/config | 20 | mkdir -p $ONOS_HOME/config 2>/dev/null && chown $ONOS_USER.$ONOS_GROUP $ONOS_HOME/config |
21 | [ ! -h $ONOS_HOME/log ] && ln -s $ONOS_HOME/karaf/data/log $ONOS_HOME/log || : | 21 | [ ! -h $ONOS_HOME/log ] && ln -s $ONOS_HOME/karaf/data/log $ONOS_HOME/log || : |
22 | start-stop-daemon --signal INT --start --chuid $ONOS_USER \ | 22 | start-stop-daemon --signal INT --start --chuid $ONOS_USER \ |
23 | - --exec $ONOS_HOME/bin/onos-service --pidfile $ONOS_PID | 23 | + --exec $ONOS_HOME/bin/onos-service --pidfile $ONOS_PID \ |
24 | -- $ONOS_OPTS >$ONOS_HOME/var/stdout.log 2>$ONOS_HOME/var/stderr.log | 24 | -- $ONOS_OPTS >$ONOS_HOME/var/stdout.log 2>$ONOS_HOME/var/stderr.log |
25 | } | 25 | } |
26 | 26 | ... | ... |
-
Please register or login to post a comment