088fec36fe
This removes DAEMON_DOUBLE_FORK flag from bb_daemonize_or_rexec(), as SSD was the only user. Also includes fix for -S: now works without -a and -x, does not print pids (compat with "start-stop-daemon (OpenRC) 0.34.11 (Gentoo Linux)"). function old new delta start_stop_daemon_main 1018 1084 +66 add_interface 99 103 +4 fail_hunk 139 136 -3 bb_daemonize_or_rexec 205 183 -22 ------------------------------------------------------------------------------ (add/remove: 0/0 grow/shrink: 2/2 up/down: 70/-25) Total: 45 bytes Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
25 lines
538 B
Bash
Executable File
25 lines
538 B
Bash
Executable File
#!/bin/sh
|
|
# Copyright 2008 by Denys Vlasenko
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
|
|
|
. ./testing.sh
|
|
|
|
# testing "test name" "cmd" "expected result" "file input" "stdin"
|
|
|
|
testing "start-stop-daemon -x without -a" \
|
|
'start-stop-daemon -S -x true 2>&1; echo $?' \
|
|
"0\n" \
|
|
"" ""
|
|
|
|
testing "start-stop-daemon -a without -x" \
|
|
'start-stop-daemon -S -a false 2>&1; echo $?' \
|
|
"1\n" \
|
|
"" ""
|
|
|
|
testing "start-stop-daemon without -x and -a" \
|
|
'start-stop-daemon -S false 2>&1; echo $?' \
|
|
"1\n" \
|
|
"" ""
|
|
|
|
exit $FAILCOUNT
|