aboutsummaryrefslogtreecommitdiff
path: root/DEBIAN/postinst
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2016-10-27 09:57:35 -0400
committerB Stack <bgstack15@gmail.com>2016-10-27 09:57:35 -0400
commitb37d1fa1f1deda881eef751358917c29f38871b8 (patch)
tree9ce4a391f1ace15689fa55b8f321ec20cfc722cf /DEBIAN/postinst
downloadkeepalive-b37d1fa1f1deda881eef751358917c29f38871b8.tar.gz
keepalive-b37d1fa1f1deda881eef751358917c29f38871b8.tar.bz2
keepalive-b37d1fa1f1deda881eef751358917c29f38871b8.zip
Added to git
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