From 258ea348ab1377695c29d98c51a61fd8e7b00d1f Mon Sep 17 00:00:00 2001 From: Alexandre Le Gall Date: Fri, 22 Sep 2023 11:22:28 +0200 Subject: [PATCH] [FIX] Installer resolvconf --- distrobuilder/debian-sid.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/distrobuilder/debian-sid.yml b/distrobuilder/debian-sid.yml index fb22282..6cee8bc 100644 --- a/distrobuilder/debian-sid.yml +++ b/distrobuilder/debian-sid.yml @@ -37,6 +37,7 @@ packages: sets: - action: install packages: + - dbus - locales - sudo - action: remove @@ -54,6 +55,13 @@ actions: dpkg-reconfigure --frontend=noninteractive locales update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 + # Install resolvconf + echo resolvconf resolvconf/linkify-resolvconf boolean false | debconf-set-selections + echo "REPORT_ABSENT_SYMLINK=no" >> /etc/default/resolvconf + apt-get -y install resolvconf + echo resolvconf resolvconf/linkify-resolvconf boolean true | debconf-set-selections + rm /etc/default/resolvconf + # Cleanup underlying /run mount -o bind / /mnt rm -rf /mnt/run/*