Browse Source

add foreground option

master
lazedo 6 years ago
parent
commit
847f1959e2
1 changed files with 10 additions and 1 deletions
  1. +10
    -1
      system/sbin/kazoo-kamailio

+ 10
- 1
system/sbin/kazoo-kamailio View File

@ -306,6 +306,10 @@ case "$1" in
shift shift
start $@ start $@
;; ;;
foreground)
shift
start -E -DD $@
;;
start) start)
shift shift
start -DD $@ start -DD $@
@ -328,7 +332,12 @@ case "$1" in
boot) boot)
shift shift
prepare prepare
start -DD $@
start $@
;;
boot-foreground)
shift
prepare
start -E -DD $@
;; ;;
*) *)
echo $"Usage: $0 {prepare|start|background|boot|stop|restart|reset-restart|status|check|pid}" echo $"Usage: $0 {prepare|start|background|boot|stop|restart|reset-restart|status|check|pid}"


Loading…
Cancel
Save