8 lines
140 B
Bash
Executable File
8 lines
140 B
Bash
Executable File
#!/bin/sh
|
|
|
|
/usr/sbin/postfix -c /etc/postfix start
|
|
|
|
while kill -0 $(cat /var/spool/postfix/pid/master.pid) 2>/dev/null; do
|
|
sleep 1
|
|
done
|