mirror of
https://github.com/pi-hole/pi-hole
synced 2024-12-22 23:08:07 +00:00
Merge pull request #1195 from pi-hole/fix/logrotate
Change how user and group are stored in the logrotate config file
This commit is contained in:
commit
fddc515ee1
@ -1,4 +1,5 @@
|
|||||||
/var/log/pihole.log {
|
/var/log/pihole.log {
|
||||||
|
# su #
|
||||||
daily
|
daily
|
||||||
copytruncate
|
copytruncate
|
||||||
rotate 5
|
rotate 5
|
||||||
|
@ -949,7 +949,7 @@ installLogrotate() {
|
|||||||
# the local properties of the /var/log directory
|
# the local properties of the /var/log directory
|
||||||
logusergroup="$(stat -c '%U %G' /var/log)"
|
logusergroup="$(stat -c '%U %G' /var/log)"
|
||||||
if [[ ! -z $logusergroup ]]; then
|
if [[ ! -z $logusergroup ]]; then
|
||||||
echo "su ${logusergroup}" >> /etc/pihole/logrotate
|
sed -i "s/# su #/su ${logusergroup}/" /etc/pihole/logrotate
|
||||||
fi
|
fi
|
||||||
echo " done!"
|
echo " done!"
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user