FIX: rsyslog uses `adm` group now (#625)
`syslog` group doesn't exist anymore and: ``` # grep -i 'group' /etc/rsyslog.conf $FileGroup adm ```
This commit is contained in:
parent
0ea4ee497f
commit
1e1571e370
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
exec 2>&1
|
||||
cd /
|
||||
chgrp syslog /var/log
|
||||
chgrp adm /var/log
|
||||
chmod g+w /var/log
|
||||
rm -f /var/run/rsyslogd.pid
|
||||
exec rsyslogd -n
|
||||
|
|
Loading…
Reference in New Issue