add restart message
This commit is contained in:
parent
41f2c45900
commit
a9a7ce9bad
|
@ -2,12 +2,14 @@ post_install() {
|
|||
systemctl --global daemon-reload
|
||||
find /usr/lib/systemd/user/ -name "fix-*.timer" -type f -printf "%f\0" | xargs -0 systemctl --global enable
|
||||
find /usr/lib/systemd/user/ -name "fix-*.timer" -type f -printf "%f\0" | xargs -0 systemctl --global start
|
||||
echo "A restart is required for the changes to take effect"
|
||||
}
|
||||
|
||||
post_upgrade() {
|
||||
systemctl --global daemon-reload
|
||||
find /usr/lib/systemd/user/ -name "fix-*.timer" -type f -printf "%f\0" | xargs -0 systemctl --global enable
|
||||
find /usr/lib/systemd/user/ -name "fix-*.timer" -type f -printf "%f\0" | xargs -0 systemctl --global restart
|
||||
echo "A restart is required for the changes to take effect"
|
||||
}
|
||||
|
||||
pre_remove() {
|
||||
|
@ -17,4 +19,5 @@ pre_remove() {
|
|||
|
||||
post_remove() {
|
||||
systemctl --global daemon-reload
|
||||
echo "A restart is required for the changes to take effect"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user