Package dwall: Scripts

Post install

1
2
3
4
/sbin/chkconfig --add dwall
if ! grep -q "/var/log/dwall" /etc/syslog.conf; then
	echo -e "#kern.debug\t\t\t\t\t\t\t/var/log/dwall" >>/etc/syslog.conf
fi
Pre uninstall

1
2
3
if [ $1 -eq 0 ]; then
	/sbin/chkconfig --del dwall
fi