blob: 7fd911f76eeb5007372be3b0b857ce13568f5c3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
help: Configure syslog daemon
end: if [ -n "$VAR(./global/facility/@@)" ]; then
# remove the default config for global messages
sudo sh -c "sed -i '/\*\.notice[[:space:]]*-\/var\/log\/messages/d' /etc/syslog.conf"
else
# if not already there then write the default config for global messages
if ! grep -q "\*\.notice[[:space:]]*-/var/log/messages" /etc/syslog.conf; then
sudo sh -c "echo \"*.notice -/var/log/messages\" >> /etc/syslog.conf"
fi
fi
sudo /usr/sbin/invoke-rc.d sysklogd restart
|