slackbuilds_ponce/network/etcd/README.SBo
Thibaut Notteboom 819088b4aa
network/etcd: Added (key value store for shared configuration).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2018-07-28 08:51:47 +07:00

16 lines
358 B
Text

README.SBo
==========
To start etcd automatically at system startup, add the following to
your /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.etcd ]; then
/etc/rc.d/rc.etcd start
fi
To stop etcd automatically at system shutdown, add the following to
your /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.etcd ]; then
/etc/rc.d/rc.etcd stop
fi