aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dist/pacman/linux-status.install
diff options
context:
space:
mode:
Diffstat (limited to 'dist/pacman/linux-status.install')
-rw-r--r--dist/pacman/linux-status.install19
1 files changed, 19 insertions, 0 deletions
diff --git a/dist/pacman/linux-status.install b/dist/pacman/linux-status.install
new file mode 100644
index 0000000..32b9a90
--- /dev/null
+++ b/dist/pacman/linux-status.install
@@ -0,0 +1,19 @@
+post_install() {
+ systemctl --system daemon-reload
+ systemctl --system enable linux-status
+ systemctl --system start linux-status
+}
+
+pre_remove() {
+ systemctl --system stop linux-status.service
+ systemctl --system disable linux-status.service
+ systemctl --system daemon-reload
+}
+
+pre_upgrade() {
+ pre_remove "$1"
+}
+
+post_upgrade() {
+ post_install "$1"
+}