From db2708f2e897a1fabcd725e065f6c0cad67cdf41 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Tue, 30 Jul 2013 09:03:45 -0700 Subject: [PATCH] fix(dev-db/etcd): use new state location have etcd use /var/lib like other daemons do. --- .../third_party/coreos-overlay/dev-db/etcd/files/etcd-bootstrap | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk_container/src/third_party/coreos-overlay/dev-db/etcd/files/etcd-bootstrap b/sdk_container/src/third_party/coreos-overlay/dev-db/etcd/files/etcd-bootstrap index 611cc898c4..536defbdd7 100755 --- a/sdk_container/src/third_party/coreos-overlay/dev-db/etcd/files/etcd-bootstrap +++ b/sdk_container/src/third_party/coreos-overlay/dev-db/etcd/files/etcd-bootstrap @@ -7,7 +7,7 @@ MY_IP=$(curl -s $META_URL/meta-data/local-ipv4) BOOTSTRAP="/var/run/etcd/bootstrap.config" # for etcd -STATE=/media/state/etcd +STATE=/var/lib/etcd mkdir -p $STATE [ ! -e $BOOTSTRAP ] && echo bootstrap config missing && exit 1