blob: bc3236735791b4c695402ce687a213a217efc938 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
#!/bin/sh
#
## Slackware init script for postfix
## 20030828 Manolis Tzanidakis
#
postfix_start() {
if [ -x /usr/sbin/postfix ]; then
echo -n "Starting postfix MTA: "
echo "/usr/sbin/postfix start"
/usr/sbin/postfix start 2>/dev/null
fi
}
postfix_stop() {
/usr/sbin/postfix stop 2>/dev/null
}
postfix_restart() {
sh $0 stop
sleep 1
sh $0 start
}
postfix_reload() {
/usr/sbin/postfix reload 2>/dev/null
}
case "$1" in
'start')
postfix_start
;;
'stop')
postfix_stop
;;
'restart')
postfix_restart
;;
'reload')
postfix_reload
;;
*)
echo "usage $0 start|stop|restart|reload"
esac
|