summaryrefslogtreecommitdiffstats
path: root/network/etcd/README.SBo
blob: 0f12c4c51e48c99ddd306305e77b90d6dcd2042a (plain)
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