From 8c32bcb36d673f063a1c872ace29b7a83e74b3c3 Mon Sep 17 00:00:00 2001 From: Xin Ouyang Date: Wed, 26 Sep 2012 15:09:13 +0800 Subject: at: atd remove useless --make-pidfile option. For start-stop-daemon, --make-pidfile is used when starting a program that does not create its own pid file. atd would create its own /var/run/atd.pid, so remove this option. (From OE-Core rev: f10d236cda704cd91e185f8dc9c3f52461e2dad1) Signed-off-by: Xin Ouyang Signed-off-by: Richard Purdie --- meta/recipes-extended/at/files/S99at | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-extended/at/files') diff --git a/meta/recipes-extended/at/files/S99at b/meta/recipes-extended/at/files/S99at index bcfcbdae21..386f8a497e 100644 --- a/meta/recipes-extended/at/files/S99at +++ b/meta/recipes-extended/at/files/S99at @@ -7,7 +7,7 @@ umask 077 start() { echo -n "Starting atd: " - start-stop-daemon --start --quiet --make-pidfile --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- -f + start-stop-daemon --start --quiet --pidfile /var/run/atd.pid --background --exec /usr/sbin/atd -- -f echo "OK" } stop() { -- cgit v1.2.3-54-g00ecf