Fix: Allows there to be a directory in config-parts.
This commit is contained in:
parent
88f6e4d4ef
commit
35088fd589
1 changed files with 1 additions and 1 deletions
|
@ -79,7 +79,7 @@ if "$dry_run"; then
|
||||||
else
|
else
|
||||||
# Pull new container images
|
# Pull new container images
|
||||||
mapfile -t AVAILABLE_IMAGES < <(run show container image | awk '{ if ( NR > 1 ) { print $1 ":" $2} }')
|
mapfile -t AVAILABLE_IMAGES < <(run show container image | awk '{ if ( NR > 1 ) { print $1 ":" $2} }')
|
||||||
mapfile -t CONFIG_IMAGES < <(sed -nr "s/set container name .* image '(.*)'/\1/p" /config/config-parts/* | uniq)
|
mapfile -t CONFIG_IMAGES < <(find /config/config-parts/ -type f -exec sed -nr "s/set container name .* image '(.*)'/\1/p" {} + | sort | uniq)
|
||||||
|
|
||||||
for image in "${CONFIG_IMAGES[@]}"; do
|
for image in "${CONFIG_IMAGES[@]}"; do
|
||||||
if [[ ! " ${AVAILABLE_IMAGES[*]} " =~ \ ${image}\ ]]; then
|
if [[ ! " ${AVAILABLE_IMAGES[*]} " =~ \ ${image}\ ]]; then
|
||||||
|
|
Reference in a new issue