mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-16 22:22:12 +01:00
Fixes #7161 Options in /etc/conf.d/etcd aren't passed to the daemon. This patch configures etcd to read options from a YAML file instead.
21 lines
351 B
Plaintext
21 lines
351 B
Plaintext
SVCNAME=etcd
|
|
PIDPATH=/var/run/${SVCNAME}
|
|
PIDFILE=${PIDPATH}/${SVCNAME}.pid
|
|
LOGPATH=/var/log/${SVCNAME}
|
|
USER=$SVCNAME
|
|
|
|
ETCD_CONFIG=/etc/etcd/conf.yml
|
|
|
|
# Path to the data directory.
|
|
#
|
|
# default: "${name}.etcd"
|
|
# distribution default: "/var/lib/etcd"
|
|
#
|
|
ETCD_DATA_DIR="/var/lib/etcd"
|
|
|
|
# Any additional command-line options
|
|
#
|
|
# default: ""
|
|
#
|
|
#ETCD_OPTS=""
|