chore: always use /etc/systemd/system from new rootfs

This commit is contained in:
Rudra Saraswat 2024-02-13 14:49:15 +05:30
parent efd115dbf3
commit d50e2fc06f

View file

@ -377,6 +377,8 @@ Server = {package_repo["repo-url"]}
exec('cp', '-ax', os.path.join(var_lib_diff.left, name), dir_name) exec('cp', '-ax', os.path.join(var_lib_diff.left, name), dir_name)
exec('cp', '/.new_rootfs/etc/pacman.conf', '/.new.etc') exec('cp', '/.new_rootfs/etc/pacman.conf', '/.new.etc')
exec('rm', '-rf', '/.new.etc/systemd/system')
exec('cp', '-ax', '/.new_rootfs/etc/systemd/system', '/.new.etc/systemd')
exec('rm', '-rf', '/.new.var.lib/pacman') exec('rm', '-rf', '/.new.var.lib/pacman')
exec('cp', '-ax', '/.new_rootfs/var/lib/pacman', '/.new.var.lib/pacman') exec('cp', '-ax', '/.new_rootfs/var/lib/pacman', '/.new.var.lib/pacman')