- at.sleep move away from pm-utils to systemd-sleep OBS-URL: https://build.opensuse.org/request/show/180075 OBS-URL: https://build.opensuse.org/package/show/Base:System/at?expand=0&rev=63
10 lines
177 B
Bash
10 lines
177 B
Bash
#!/bin/sh
|
|
case $1/$2 in
|
|
pre/*)
|
|
systemctl --quiet is-enabled atd && systemctl stop atd
|
|
;;
|
|
post/*)
|
|
systemctl --quiet is-enabled atd && systemctl restart atd
|
|
;;
|
|
esac
|