Skip to content

Commit de4f0ec

Browse files
authored
Merge pull request #3463 from SUSE/for-deploy-Tumbleweed
🤖: Update build recipes for Tumbleweed
2 parents fe005ab + d694beb commit de4f0ec

File tree

8 files changed

+28
-6
lines changed

8 files changed

+28
-6
lines changed

bind-image/Dockerfile

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,11 @@ RUN set -euo pipefail; \
2929
export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \
3030
zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends bind bind-utils
3131

32+
RUN set -euo pipefail; zypper -n install --no-recommends systemd && \
33+
systemd-tmpfiles --create --root /target bind.conf
34+
3235
# patch named.prep to not call logger (provided by systemd)
3336
# and just log to stdout
34-
RUN set -euo pipefail; zypper -n install --no-recommends systemd && \
35-
systemd-tmpfiles --create --root /target
3637
RUN set -euo pipefail; \
3738
mkdir -p /target/usr/local/lib/bind; \
3839
cp /target//usr/libexec/bind/named.prep /target/usr/local/lib/bind/named.prep; \
@@ -85,8 +86,5 @@ RUN set -euo pipefail; \
8586
install -d -m 755 -o root -g root /var/lib/named/master; \
8687
install -d -m 755 -o named -g named /var/lib/named/slave; \
8788
install -d -m 750 -o named -g named /var/log/named;
88-
# create files that tmpfiles.d would create for us
89-
RUN set -euo pipefail; touch /var/lib/named/127.0.0.zone /var/lib/named/localhost.zone /var/lib/named/named.root.key /var/lib/named/root.hint
90-
9189
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
9290
HEALTHCHECK --interval=10s --timeout=5s --retries=10 CMD dig +retry=0 +short @127.0.0.1 conncheck.opensuse.org >/dev/null && echo OK

bind-image/bind-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Tue Feb 17 11:19:45 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- rerender templates with generalized tmpfiles generation logic
5+
16
-------------------------------------------------------------------
27
Mon Feb 9 10:23:34 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
38

kea-image/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ RUN set -euo pipefail; \
3030
RUN set -euo pipefail; zypper -n install --no-recommends systemd && \
3131
systemd-tmpfiles --create --root /target
3232

33+
3334
# cleanup logs and temporary files
3435
RUN set -euo pipefail; zypper -n --installroot /target clean -a; \
3536
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}; \

kea-image/kea-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Tue Feb 17 11:19:45 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- rerender templates with generalized tmpfiles generation logic
5+
16
-------------------------------------------------------------------
27
Thu Feb 5 16:45:53 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
38

mariadb-image/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN set -euo pipefail; \
2929
zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends coreutils findutils gawk mariadb mariadb-tools openssl sed timezone util-linux zstd
3030

3131
RUN set -euo pipefail; zypper -n install --no-recommends systemd && \
32-
systemd-tmpfiles --create --root /target
32+
systemd-tmpfiles --create --root /target mariadb.conf
3333
# sanity check that the version from the tag is equal to the version of mariadb that we expect
3434
RUN set -euo pipefail; \
3535
[ "$(rpm --root /target -q --qf '%{version}' mariadb | \

mariadb-image/mariadb-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Tue Feb 17 11:19:45 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- rerender templates with generalized tmpfiles generation logic
5+
16
-------------------------------------------------------------------
27
Mon Feb 9 10:23:34 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
38

valkey-image/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ COPY --from=target / /target
2828
RUN set -euo pipefail; \
2929
export PERMCTL_ALLOW_INSECURE_MODE_IF_NO_PROC=1; \
3030
zypper -n --installroot /target --gpg-auto-import-keys install --no-recommends valkey sed
31+
32+
RUN set -euo pipefail; zypper -n install --no-recommends systemd && \
33+
systemd-tmpfiles --create --root /target valkey.conf
3134
# sanity check that the version from the tag is equal to the version of valkey that we expect
3235
RUN set -euo pipefail; \
3336
[ "$(rpm --root /target -q --qf '%{version}' valkey | \

valkey-image/valkey-image.changes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
-------------------------------------------------------------------
2+
Tue Feb 17 11:19:45 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
3+
4+
- rerender templates with generalized tmpfiles generation logic
5+
16
-------------------------------------------------------------------
27
Thu Jan 1 14:16:35 UTC 2026 - SUSE Update Bot <bci-internal@suse.de>
38

0 commit comments

Comments
 (0)