diff options
author | Koen Kooi <koen@openembedded.org> | 2009-04-27 19:43:38 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-04-27 19:43:38 +0200 |
commit | 755970ac7c85a24af1a7e736a62c01dd18f7f1c8 (patch) | |
tree | c1896a77a8da201e30376d8e0e090d0479f39cf9 /recipes/cherokee/files | |
parent | cab24c255b4ea21af045f3578ea497f5e8dff4cd (diff) |
cherokee: fix init script, daemonize is '-d', not '-b'
* runtime tested on sheevaplug/angstrom
Diffstat (limited to 'recipes/cherokee/files')
-rw-r--r-- | recipes/cherokee/files/cherokee.init | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/cherokee/files/cherokee.init b/recipes/cherokee/files/cherokee.init index ea1263aff5..93603b84db 100644 --- a/recipes/cherokee/files/cherokee.init +++ b/recipes/cherokee/files/cherokee.init @@ -12,7 +12,7 @@ test ! -r "$CONFIG" && exit 0 case "$1" in start) echo "Starting $DESC: " - start-stop-daemon --oknodo -S -x $DAEMON -- -b -C $CONFIG + start-stop-daemon --oknodo -S -x $DAEMON -- -d -C $CONFIG ;; stop) |