aboutsummaryrefslogtreecommitdiffstats
path: root/testing/etcd/etcd.initd
blob: 779ab2990e75c72d9d76d1eef3b6dfd82b2e8974 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/sbin/openrc-run
# Copyright 2016 Alpine Linux
# Distributed under the terms of the GNU General Public License v2
# $Id$
supervisor=supervise-daemon

name="$RC_SVCNAME"
description="Highly-available key-value store"

command=/usr/bin/etcd
command_args="--config-file=$ETCD_CONFIG --data-dir=$ETCD_DATA_DIR $ETCD_OPTS"

command_user="$USER:$USER"

supervise_daemon_args="--chdir $ETCD_DATA_DIR"

depend() {
	need net
}

start_pre() {
	checkpath -d -m 0775 -o "$command_user" "$LOGPATH"
	checkpath -d -m 0775 -o "$command_user" "$ETCD_DATA_DIR"
}