This commit is contained in:
ahmadbilalkhalid 2019-08-28 16:51:30 +05:00
parent a4dec6114e
commit d3d77fdccf
1 changed files with 6 additions and 2 deletions

View File

@ -38,12 +38,16 @@ def setup(path, auth_name, auth_seed, auth_realm, realm_allowed, otp_server):
# Add --pidfile argument to supervise daemon
op.add(
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
op.add(
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
op.add(subprocess.check_output,