mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-29 04:17:07 +00:00
12 lines
133 B
Bash
Executable File
12 lines
133 B
Bash
Executable File
#!/bin/bash
|
|
|
|
EXEC=bind9
|
|
PROCESS=named
|
|
|
|
/etc/init.d/$EXEC start
|
|
|
|
while [ `ps -C $PROCESS -o pid= | wc -l` -gt 0 ]; do
|
|
sleep 30
|
|
done
|
|
|