diff options
Diffstat (limited to 'network/etcd/README.SBo')
-rw-r--r-- | network/etcd/README.SBo | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/network/etcd/README.SBo b/network/etcd/README.SBo new file mode 100644 index 0000000000..0f12c4c51e --- /dev/null +++ b/network/etcd/README.SBo @@ -0,0 +1,16 @@ +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 |