diff --git a/distrobuilder/debian-sid.yml b/distrobuilder/debian-sid.yml index 3b8ed66..47d678a 100644 --- a/distrobuilder/debian-sid.yml +++ b/distrobuilder/debian-sid.yml @@ -45,6 +45,13 @@ packages: - nano actions: + - trigger: post-update + action: |- + #!/bin/sh + set -eux + + echo "REPORT_ABSENT_SYMLINK=no" | tee /etc/default/resolvconf + - trigger: post-packages action: |- #!/bin/sh @@ -54,6 +61,9 @@ actions: echo "en_US.UTF-8 UTF-8" | tee --append /etc/locale.gen dpkg-reconfigure --frontend=noninteractive locales update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 + + # Restore resolv.conf symlink + ln -nsf ../run/resolvconf/resolv.conf /etc/resolv.conf # Cleanup underlying /run mount -o bind / /mnt