From 40adc73cd0d5576f9f0095cef0883d3522e353f8 Mon Sep 17 00:00:00 2001 From: Alexandre Le Gall Date: Thu, 21 Sep 2023 15:53:18 +0200 Subject: [PATCH] [FIX] Ajouter le paquet resolvconf --- distrobuilder/debian-sid.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) 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