10 lines
212 B
Bash
Executable file
10 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
|
|
grep -qi ^UserID /etc/opendkim/opendkim.conf &&
|
|
chown $(grep -i ^UserID /etc/opendkim/opendkim.conf | awk '{ print $2 }') /var/run/opendkim
|
|
|
|
ln -sf /proc/1/fd/1 /var/log/messages
|
|
|
|
syslogd
|
|
|
|
exec $@
|