Add Enable NetworkManager Service
This commit is contained in:
parent
de79317fb3
commit
842511035a
1 changed files with 2 additions and 3 deletions
|
@ -23,9 +23,6 @@
|
||||||
set -uo pipefail
|
set -uo pipefail
|
||||||
trap 's=$?; echo "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR
|
trap 's=$?; echo "$0: Error on line "$LINENO": $BASH_COMMAND"; exit $s' ERR
|
||||||
|
|
||||||
exec 1> >(tee "/root/stdout.log")
|
|
||||||
exec 2> >(tee "/root/stderr.log" >&2)
|
|
||||||
|
|
||||||
args=()
|
args=()
|
||||||
target_device=""
|
target_device=""
|
||||||
new_hostname=""
|
new_hostname=""
|
||||||
|
@ -187,6 +184,8 @@ arch-chroot /mnt bootctl install
|
||||||
|
|
||||||
# Enable resolved
|
# Enable resolved
|
||||||
systemctl --root /mnt enable systemd-resolved
|
systemctl --root /mnt enable systemd-resolved
|
||||||
|
# Enable NetworkManager
|
||||||
|
systemctl --root /mnt enable NetworkManager
|
||||||
# Enable homed
|
# Enable homed
|
||||||
systemctl --root /mnt enable systemd-homed
|
systemctl --root /mnt enable systemd-homed
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue