diff options
author | Xin Ouyang <Xin.Ouyang@windriver.com> | 2012-09-26 15:09:13 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-26 14:53:28 +0100 |
commit | f10d236cda704cd91e185f8dc9c3f52461e2dad1 (patch) | |
tree | c6df744a2c102502fbaa398ec1b7e4266b4d2d4d /meta | |
parent | 390e7f1f0b1b21d3c0787a6272583d5829561f95 (diff) | |
download | openembedded-core-f10d236cda704cd91e185f8dc9c3f52461e2dad1.tar.gz openembedded-core-f10d236cda704cd91e185f8dc9c3f52461e2dad1.tar.bz2 openembedded-core-f10d236cda704cd91e185f8dc9c3f52461e2dad1.zip |
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.
Signed-off-by: Xin Ouyang <Xin.Ouyang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/at/at_3.1.13.bb | 2 | ||||
-rw-r--r-- | meta/recipes-extended/at/files/S99at | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/at/at_3.1.13.bb b/meta/recipes-extended/at/at_3.1.13.bb index a391d6ebef..3580e0965a 100644 --- a/meta/recipes-extended/at/at_3.1.13.bb +++ b/meta/recipes-extended/at/at_3.1.13.bb @@ -11,7 +11,7 @@ PAM_DEPS = "libpam libpam-runtime pam-plugin-env pam-plugin-limits" RCONFLICTS_${PN} = "atd" RREPLACES_${PN} = "atd" -PR = "r3" +PR = "r4" SRC_URI = "${DEBIAN_MIRROR}/main/a/at/at_${PV}.orig.tar.gz \ file://configure.patch \ 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() { |