We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3d5a92b + a96b5f0 commit c8546b4Copy full SHA for c8546b4
1 file changed
contrib/coreos/user-data.example
@@ -141,9 +141,8 @@ write_files:
141
content: |
142
#!/bin/bash
143
144
- COMPONENTS=(builder cache controller database logger logspout publisher registry router store-daemon store-gateway store-metadata store-monitor store-volume)
145
-
146
- for c in $COMPONENTS; do
+ COMPONENTS=(builder cache controller database logger logspout publisher registry router store-daemon store-gateway store-metadata store-monitor)
+ for c in "${COMPONENTS[@]}"; do
147
image=`/run/deis/bin/get_image /deis/$c`
148
docker history $image >/dev/null 2>&1 || docker pull $image
149
done
0 commit comments