aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/postfix/rc.d6
1 files changed, 3 insertions, 3 deletions
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; }
;;