aboutsummaryrefslogtreecommitdiff
path: root/usr/lib
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2017-01-26 09:55:30 -0500
committerB Stack <bgstack15@gmail.com>2017-01-26 09:55:30 -0500
commit062d25d431bb2aa5f6437fd205b608372d77e5f5 (patch)
treef4595e0e2e00541314f4fe78d7de35ed6404798b /usr/lib
parentAdded to git (diff)
downloadkeepalive-062d25d431bb2aa5f6437fd205b608372d77e5f5.tar.gz
keepalive-062d25d431bb2aa5f6437fd205b608372d77e5f5.tar.bz2
keepalive-062d25d431bb2aa5f6437fd205b608372d77e5f5.zip
major revision to 1.0-7 is in progress
Diffstat (limited to 'usr/lib')
-rw-r--r--usr/lib/systemd/system/keepalive.service4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/lib/systemd/system/keepalive.service b/usr/lib/systemd/system/keepalive.service
index 117dbd5..8b31775 100644
--- a/usr/lib/systemd/system/keepalive.service
+++ b/usr/lib/systemd/system/keepalive.service
@@ -14,11 +14,11 @@ ConditionPathExists=/usr/bin/keepalive
[Service]
Type=simple
User=root
-ExecStart=/etc/keepalive/bin/keepalive
+ExecStart=/usr/share/keepalive/keepalive
Restart=on-abort
StandardOutput=syslog
StandardError=syslog
-ExecStopPost=/etc/keepalive/bin/keepalive --clean
+ExecStopPost=/usr/share/keepalive/keepalive --clean
[Install]
WantedBy=multi-user.target
bgstack15