mirror of
git://slackware.nl/current.git
synced 2024-12-29 10:25:00 +01:00
eb19d64569
patches/packages/at-3.2.3-x86_64-1_slack15.0.txz: Upgraded. Switched to at-3.2.3 since version 3.2.4 has a regression that causes queued jobs to not always run on time when atd is run as a standalone daemon. Thanks to Cesare. patches/packages/mozilla-firefox-91.6.0esr-x86_64-1_slack15.0.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/firefox/91.6.0/releasenotes/ https://www.mozilla.org/security/advisories/mfsa2022-05/ https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22753 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22754 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22756 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22759 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22760 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22761 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22763 https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2022-22764 (* Security fix *) patches/packages/mozilla-thunderbird-91.6.0-x86_64-1_slack15.0.txz: Upgraded. This release contains security fixes and improvements. For more information, see: https://www.mozilla.org/en-US/thunderbird/91.6.0/releasenotes/ https://www.mozilla.org/en-US/security/known-vulnerabilities/thunderbird/#thunderbird91.6 (* Security fix *)
39 lines
669 B
Bash
39 lines
669 B
Bash
#!/bin/sh
|
|
# /etc/rc.d/rc.atd - start/stop the at daemon
|
|
|
|
# To change the default options, edit /etc/default/atd.
|
|
if [ -r /etc/default/atd ]; then
|
|
. /etc/default/atd
|
|
fi
|
|
|
|
start_atd() {
|
|
if ! /usr/bin/pgrep --ns $$ --euid daemon -f "^/usr/sbin/atd" 1> /dev/null 2> /dev/null ; then
|
|
echo "Starting atd: /usr/sbin/atd $ATD_OPTS"
|
|
/usr/sbin/atd $ATD_OPTS
|
|
fi
|
|
}
|
|
|
|
stop_atd() {
|
|
echo "Stopping atd."
|
|
/usr/bin/pkill --ns $$ --euid daemon -f "^/usr/sbin/atd" 2> /dev/null
|
|
}
|
|
|
|
restart_atd() {
|
|
stop_atd
|
|
sleep 1
|
|
start_atd
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
start_atd
|
|
;;
|
|
'stop')
|
|
stop_atd
|
|
;;
|
|
'restart')
|
|
restart_atd
|
|
;;
|
|
*)
|
|
echo "usage $0 start|stop|restart"
|
|
esac
|