diff options
author | Jeff Fredrickson | 2023-10-17 09:00:49 -0600 |
---|---|---|
committer | Jeff Fredrickson | 2023-10-17 09:00:49 -0600 |
commit | c4d03b5239f5d62fd4ec52b6ed48360fb8c61263 (patch) | |
tree | 2416e24c0d12f48e8b80a2649881b815759b8e4f | |
parent | 2197ed5a2aa7fa9e87772a15be8c5ce0fb4e9ae0 (diff) | |
download | aur-c4d03b5239f5d62fd4ec52b6ed48360fb8c61263.tar.gz |
daemon-reload not needed due to existing post-transaction hook
-rw-r--r-- | disable-c6-systemd.install | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/disable-c6-systemd.install b/disable-c6-systemd.install index d4211401d8c5..a3592ec9b2d9 100644 --- a/disable-c6-systemd.install +++ b/disable-c6-systemd.install @@ -2,14 +2,10 @@ post_install() { echo "Don't forget to enable and start the service:" echo " systemctl enable disable-c6.service" echo " systemctl start disable-c6.service" - systemctl daemon-reload -} - -post_upgrade() { - systemctl daemon-reload } pre_remove() { systemctl stop disable-c6.service systemctl disable disable-c6.service } + |