2c3599721e
Now user is created on setup and dockerfile
6 lines
118 B
Bash
6 lines
118 B
Bash
#!/bin/sh
|
|
PID=$(pgrep rsyslog)
|
|
if [ -z ${PID} ]
|
|
then
|
|
exec /usr/sbin/rsyslogd -f /etc/mail/rsyslogd/rsyslog.conf
|
|
fi |