7 lines
121 B
Text
7 lines
121 B
Text
|
#!/bin/bash
|
||
|
[[ -f ./setup ]] && source ./setup
|
||
|
|
||
|
pushd /root > /dev/null
|
||
|
exec su-exec root /sbin/syslogd -nS -O-
|
||
|
popd
|