From 0e63b3d209c0866f29cafe51717395156234f7d1 Mon Sep 17 00:00:00 2001 From: "Adrian C. (anrxc)" Date: Sun, 30 Jun 2013 19:32:53 +0200 Subject: rcdscripts: postfix /usr/sbin deprecation --- src/postfix/rc.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/postfix/rc.d b/src/postfix/rc.d index fa314bb..a428fe6 100755 --- a/src/postfix/rc.d +++ b/src/postfix/rc.d @@ -8,19 +8,19 @@ name=postfix case "$1" in start) stat_busy "Starting $name daemon" - /usr/sbin/postfix start &>/dev/null \ + /usr/bin/postfix start &>/dev/null \ && { add_daemon $name; stat_done; } \ || { stat_fail; exit 1; } ;; stop) stat_busy "Stopping $name daemon" - /usr/sbin/postfix stop &>/dev/null \ + /usr/bin/postfix stop &>/dev/null \ && { rm_daemon $name; stat_done; } \ || { stat_fail; exit 1; } ;; reload) stat_busy "Reloading $name daemon" - /usr/sbin/postfix reload &>/dev/null \ + /usr/bin/postfix reload &>/dev/null \ && { stat_done; } \ || { stat_fail; exit 1; } ;; -- cgit v1.2.3