6 lines
116 B
Plaintext
6 lines
116 B
Plaintext
|
#!/bin/sh
|
||
|
PID=$(pgrep rsyslog)
|
||
|
if [ -z $PID ]
|
||
|
then
|
||
|
exec /usr/sbin/rsyslogd -f /etc/mail/rsyslogd/rsyslog.conf
|
||
|
fi
|