1
0

build/rebuild.sh: rebuild when current image has pending updates

This commit is contained in:
2022-06-26 15:09:51 +02:00
parent aec33942bb
commit d96ffe2e95
5 changed files with 40 additions and 0 deletions

17
build/rebuild.sh Executable file
View File

@ -0,0 +1,17 @@
#!/bin/sh
updates_available () {
if test "$(docker run -it --rm $1 /bin/sh -c 'apt -qqq update && apt -qq list --upgradable')" != ""; then
return 0
else
return 1
fi
}
if updates_available pommib/powerdns:4.4-bullseye; then
./debian/11/build.sh
fi
if updates_available pommib/powerdns:4.6-bookworm; then
./debian/12/build.sh
fi