diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-02-01 23:03:39 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-02-01 23:03:57 +0100 |
commit | 26f9dba3077f4119f692757a825265653adbcf89 (patch) | |
tree | 2d40cf453d40a2063bbf71bc5a7de06df31db912 /debian/squeeze/tdebase | |
parent | 6eccc1f2f76d5cfb6b5f814ab8317695ccb8054c (diff) | |
download | tde-packaging-26f9dba3077f4119f692757a825265653adbcf89.tar.gz tde-packaging-26f9dba3077f4119f692757a825265653adbcf89.zip |
Fix the wrong argument for start-stop-daemon in tdm-trinity.postinst on Debian and Ubuntu
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
(cherry picked from commit a236ea727fe0f99235f71b6bb138ca1e09d208a3)
Diffstat (limited to 'debian/squeeze/tdebase')
-rw-r--r-- | debian/squeeze/tdebase/debian/tdm-trinity.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debian/squeeze/tdebase/debian/tdm-trinity.postinst b/debian/squeeze/tdebase/debian/tdm-trinity.postinst index 24fc19bb4..282662484 100644 --- a/debian/squeeze/tdebase/debian/tdm-trinity.postinst +++ b/debian/squeeze/tdebase/debian/tdm-trinity.postinst @@ -63,7 +63,7 @@ for HOST in "" \ fi done # or if it's already running -if start-stop-daemon --stop --quiet --signal 0 --pid /var/run/tdm.pid --exec /opt/trinity/bin/tdm; then +if start-stop-daemon --stop --quiet --signal 0 --pidfile /var/run/tdm.pid --exec /opt/trinity/bin/tdm; then NOSTART=yes fi # or if the options file says not to |