Unmask system-resolved if needed
Installation on my system (Debian 12.4) failed in the configuration phase of the debian package due to systemd-resolved being masked. This was from a fresh minimal installation of debian bookworm, by just following the home assistant supervised install readme.
This commit is contained in:
parent
5b8fd2b0f4
commit
8edce2ce2c
1 changed files with 5 additions and 0 deletions
|
@ -31,6 +31,11 @@ if [ "$(stat -c %a /etc/systemd/resolved.conf)" != "644" ]; then
|
||||||
chmod 644 /etc/systemd/resolved.conf
|
chmod 644 /etc/systemd/resolved.conf
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Unmask systemd-resolved if needed
|
||||||
|
if systemctl status systemd-resolved.service | grep -q 'masked'; then
|
||||||
|
sudo systemctl unmask systemd-resolved.service
|
||||||
|
fi
|
||||||
|
|
||||||
# Enable and restart systemd-resolved
|
# Enable and restart systemd-resolved
|
||||||
info "Enable systemd-resolved"
|
info "Enable systemd-resolved"
|
||||||
systemctl enable systemd-resolved.service> /dev/null 2>&1;
|
systemctl enable systemd-resolved.service> /dev/null 2>&1;
|
||||||
|
|
Loading…
Reference in a new issue