mirror of
git://slackware.nl/current.git
synced 2025-01-09 05:24:36 +01:00
086112c734
a/dcron-4.5-x86_64-8.txz: Rebuilt. rc.crond: match the running process more accurately. a/glibc-zoneinfo-2018e-noarch-3.txz: Rebuilt. Don't emit an error if the /etc/localtime-copied-from is not present when the package is initially installed. a/libcgroup-0.41-x86_64-5.txz: Rebuilt. Added /etc/cgconfig.d/ directory. a/pkgtools-15.0-noarch-19.txz: Rebuilt. installpkg, makebootdisk, removepkg, upgradepkg: don't try to remove admin directories (supposedly "in case" they are a symlink). a/sysvinit-scripts-2.1-noarch-12.txz: Rebuilt. rc.6: stop haveged rc.S: start rc.cgconfig and rc.cgred ap/at-3.1.20-x86_64-5.txz: Rebuilt. rc.atd: match the running process more accurately. ap/slackpkg-2.83.0-noarch-2.txz: Rebuilt. Patched to handle the case where /var/log/packages is a symlink. l/gsl-2.5-x86_64-1.txz: Upgraded.
38 lines
687 B
Bash
38 lines
687 B
Bash
#!/bin/sh
|
|
# Start/stop/restart sendmail.
|
|
|
|
# Start sendmail:
|
|
sendmail_start() {
|
|
if [ -x /usr/sbin/sendmail ]; then
|
|
echo "Starting sendmail MTA daemon: /usr/sbin/sendmail -L sm-mta -bd -q25m"
|
|
/usr/sbin/sendmail -L sm-mta -bd -q25m
|
|
echo "Starting sendmail MSP queue runner: /usr/sbin/sendmail -L sm-msp-queue -Ac -q25m"
|
|
/usr/sbin/sendmail -L sm-msp-queue -Ac -q25m
|
|
fi
|
|
}
|
|
|
|
# Stop sendmail:
|
|
sendmail_stop() {
|
|
killall sendmail
|
|
}
|
|
|
|
# Restart sendmail:
|
|
sendmail_restart() {
|
|
sendmail_stop
|
|
sleep 1
|
|
sendmail_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
sendmail_start
|
|
;;
|
|
'stop')
|
|
sendmail_stop
|
|
;;
|
|
'restart')
|
|
sendmail_restart
|
|
;;
|
|
*)
|
|
echo "usage $0 start|stop|restart"
|
|
esac
|