feat(os): Enable the reflector systemd service unit (#1)

This commit is contained in:
hygienic-books 2023-02-23 01:18:18 +01:00
parent c66e910146
commit e443f66832

View File

@ -510,6 +510,10 @@ function configure_dns () {
systemctl enable 'systemd-resolved' --root='/mnt' systemctl enable 'systemd-resolved' --root='/mnt'
} }
function configure_reflector () {
systemctl enable 'reflector' --root='/mnt'
}
function configure_zfs () { function configure_zfs () {
systemctl enable 'zfs-import-cache' 'zfs-mount' 'zfs-import.target' 'zfs.target' --root='/mnt' systemctl enable 'zfs-import-cache' 'zfs-mount' 'zfs-import.target' 'zfs.target' --root='/mnt'
} }
@ -588,6 +592,7 @@ function finalize_os_setup () {
set_root_pw set_root_pw
configure_networking configure_networking
configure_dns configure_dns
configure_reflector
configure_zfs configure_zfs
configure_zfs_mount_gen configure_zfs_mount_gen
configure_zfsbootmenu configure_zfsbootmenu