a
This commit is contained in:
parent
a4dec6114e
commit
d3d77fdccf
1 changed files with 6 additions and 2 deletions
|
@ -38,12 +38,16 @@ def setup(path, auth_name, auth_seed, auth_realm, realm_allowed, otp_server):
|
||||||
# Add --pidfile argument to supervise daemon
|
# Add --pidfile argument to supervise daemon
|
||||||
op.add(
|
op.add(
|
||||||
subprocess.check_output,
|
subprocess.check_output,
|
||||||
args=["sed", "-i", "-e", r"""'s/supervise_daemon_args="--chdir $ETCD_DATA_DIR"/supervise_daemon_args="--chdir $ETCD_DATA_DIR --pidfile /run/etcd.pid"/g' /etc/init.d/etcd""")
|
args=["sed", "-i", "-e",
|
||||||
|
r"""'s/supervise_daemon_args="--chdir"""
|
||||||
|
r""" $ETCD_DATA_DIR"/supervise_daemon_args="--chdir $ETCD_DATA_DIR"""
|
||||||
|
r""" --pidfile /run/etcd.pid"/g' /etc/init.d/etcd"""])
|
||||||
|
|
||||||
# Change address of etcd
|
# Change address of etcd
|
||||||
op.add(
|
op.add(
|
||||||
subprocess.check_output,
|
subprocess.check_output,
|
||||||
args=["sed", "-i", "-e", r""""s/localhost/[2a0a:e5c0:0:2:0:b3ff:fe39:7994]/g" /etc/etcd/conf.yml'""")
|
args=["sed", "-i", "-e",
|
||||||
|
r""""s/localhost/[2a0a:e5c0:0:2:0:b3ff:fe39:7994]/g" /etc/etcd/conf.yml'"""])
|
||||||
|
|
||||||
# Start and Enable etcd service
|
# Start and Enable etcd service
|
||||||
op.add(subprocess.check_output,
|
op.add(subprocess.check_output,
|
||||||
|
|
Loading…
Reference in a new issue