mirror of
https://codeberg.org/scottslowe/learning-tools.git
synced 2026-03-11 09:04:37 +00:00
19 lines
No EOL
389 B
Text
19 lines
No EOL
389 B
Text
description "etcd 2.0 distributed key-value store"
|
|
author "Scott Lowe <scott.lowe@scottlowe.org>"
|
|
|
|
start on (net-device-up
|
|
and local-filesystems
|
|
and runlevel [2345])
|
|
stop on runlevel [016]
|
|
|
|
respawn
|
|
respawn limit 10 5
|
|
|
|
script
|
|
if [ -f "/etc/default/etcd" ]; then
|
|
. /etc/default/etcd
|
|
fi
|
|
|
|
chdir /var/etcd
|
|
exec /usr/local/bin/etcd >>/var/log/etcd.log 2>&1
|
|
end script |