Merge "Fix typo that leads to creation of extra folders in config drive"
diff --git a/config-drive/master_config.yaml b/config-drive/master_config.yaml
index 3e68c74..91c7cd8 100644
--- a/config-drive/master_config.yaml
+++ b/config-drive/master_config.yaml
@@ -130,7 +130,7 @@
jport=$(salt-call --out=text pillar.get jenkins:master:http:port | awk '{print $2}')
jport=${jport:-8081}
wait_time=0
- until [[ $(curl -sL -w "%{http_code}" localhost:$jport -o /dev/null) == 200 ]] || [ $wait_time -eq 15 ]; do
+ until [[ $(curl -sL -w "%{http_code}" localhost:$jport -o /dev/null) == 200 ]] || [ $wait_time -eq 20 ]; do
sleep $(( wait_time++ ))
done
}