mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
8 lines
140 B
Bash
8 lines
140 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
/usr/bin/sa-update > /dev/null
|
||
|
if [ $? -eq 0 ]; then
|
||
|
[ -x /etc/rc.d/rc.spamd ] && /etc/rc.d/rc.spamd restart > /dev/null
|
||
|
fi
|
||
|
|