aboutsummaryrefslogtreecommitdiff
path: root/DEBIAN/postinst
diff options
context:
space:
mode:
Diffstat (limited to 'DEBIAN/postinst')
-rwxr-xr-xDEBIAN/postinst5
1 files changed, 5 insertions, 0 deletions
diff --git a/DEBIAN/postinst b/DEBIAN/postinst
new file mode 100755
index 0000000..4c3092b
--- /dev/null
+++ b/DEBIAN/postinst
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+systemctl daemon-reload 1>/dev/null 2>&1
+systemctl enable keepalive 1>/dev/null 2>&1
+systemctl start keepalive 1>/dev/null 2>&1
bgstack15