This commit is contained in:
Eliezer Croitoru 2024-01-28 11:36:02 +00:00
parent 4022aafe7c
commit 03687573a6
2 changed files with 12 additions and 0 deletions

View File

@ -25,3 +25,6 @@ clear-ctrlr:
remove-containerd:
apt update
apt purge -y containerd
install-resolvconf:
bash install-resolvconf.sh

9
install-resolvconf.sh Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
apt update
apt install -y resolvconf
rm -vf /etc/resolv.conf
ln -sf /run/resolvconf/resolv.conf /etc/resolv.conf
systemctl disable --now systemd-resolved