summaryrefslogtreecommitdiff
path: root/debian/vyos-salt-minion.postinst
diff options
context:
space:
mode:
Diffstat (limited to 'debian/vyos-salt-minion.postinst')
-rw-r--r--debian/vyos-salt-minion.postinst10
1 files changed, 10 insertions, 0 deletions
diff --git a/debian/vyos-salt-minion.postinst b/debian/vyos-salt-minion.postinst
new file mode 100644
index 0000000..42e232c
--- /dev/null
+++ b/debian/vyos-salt-minion.postinst
@@ -0,0 +1,10 @@
+#!/bin/sh -e
+if deb-systemd-helper --quiet was-enabled salt-minion.service; then
+ # Enables the unit on first installation, creates new
+ # symlinks on upgrades if the unit file has changed.
+ deb-systemd-helper enable salt-minion.service >/dev/null || true
+fi
+
+if [ -x "/etc/init.d/salt-minion" ]; then
+ update-rc.d -f salt-minion remove >/dev/null
+fi