-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcheck-user-data.sh
More file actions
executable file
·34 lines (30 loc) · 1.06 KB
/
check-user-data.sh
File metadata and controls
executable file
·34 lines (30 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/env bash
THIS_DIR=$(cd $(dirname $0); pwd) # absolute path
CONTRIB_DIR=$(dirname $THIS_DIR)
# Use the first command-line argument as the user-data path
USER_DATA=${1:-$CONTRIB_DIR/coreos/user-data}
# Use the second command-line argument as DEIS_NUM_INSTANCES
NUM_INSTANCES=${2:-DEIS_NUM_INSTANCES}
function parse_yaml {
local prefix=$2
local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034')
sed -ne "s|^\($s\):|\1|" \
-e "s|^\($s\)\($w\)$s:$s[\"']\(.*\)[\"']$s\$|\1$fs\2$fs\3|p" \
-e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 |
awk -F$fs '{
indent = length($1)/2;
vname[indent] = $2;
for (i in vname) {if (i > indent) {delete vname[i]}}
if (length($3) > 0) {
vn=""; for (i=0; i<indent; i++) {vn=(vn)(vname[i])("_")}
printf("%s%s%s=\"%s\"\n", "'$prefix'",vn, $2, $3);
}
}'
}
if [[ $NUM_INSTANCES -ne 1 ]] ; then
parse_yaml $USER_DATA | grep -q "#DISCOVERY_URL"
if [[ $? -ne 1 ]]; then
echo "No etcd discovery URL set in $USER_DATA"
exit 1
fi
fi