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:39 +0100 |
commit | a236ea727fe0f99235f71b6bb138ca1e09d208a3 (patch) | |
tree | c63c73fdacfed44423d4c14802bdf847a0c8669b /ubuntu/maverick/tdebase/debian/tdm-trinity.postinst | |
parent | f790aba47d9389b5529c637669346df7a0a1a9fe (diff) | |
download | tde-packaging-a236ea727fe0f99235f71b6bb138ca1e09d208a3.tar.gz tde-packaging-a236ea727fe0f99235f71b6bb138ca1e09d208a3.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>
Diffstat (limited to 'ubuntu/maverick/tdebase/debian/tdm-trinity.postinst')
-rw-r--r-- | ubuntu/maverick/tdebase/debian/tdm-trinity.postinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ubuntu/maverick/tdebase/debian/tdm-trinity.postinst b/ubuntu/maverick/tdebase/debian/tdm-trinity.postinst index ec394f9cf..5686056a7 100644 --- a/ubuntu/maverick/tdebase/debian/tdm-trinity.postinst +++ b/ubuntu/maverick/tdebase/debian/tdm-trinity.postinst @@ -81,7 +81,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 |