15 lines
391 B
Bash
Executable File
15 lines
391 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# Read from the file we created
|
|
SERVER_COUNT=$(cat /tmp/consul-server-count | tr -d '\n')
|
|
|
|
# Write the flags to a temporary file
|
|
cat >/tmp/consul_flags << EOF
|
|
export CONSUL_FLAGS="-server -bootstrap-expect=${SERVER_COUNT} -data-dir=/mnt/consul"
|
|
EOF
|
|
|
|
# Write it to the full service file
|
|
sudo mv /tmp/consul_flags /etc/service/consul
|
|
chmod 0644 /etc/service/consul
|