generator.generate_pacman_conf_body(): add in_chroot=False param to use config.get_path('pacman') if necessary
This commit is contained in:
parent
5a794ba3dd
commit
3952892029
5 changed files with 10 additions and 5 deletions
6
image.py
6
image.py
|
@ -324,7 +324,11 @@ def install_rootfs(
|
|||
user=user,
|
||||
)
|
||||
files = {
|
||||
'etc/pacman.conf': get_base_distro(arch).get_pacman_conf(check_space=True, extra_repos=get_kupfer_https(arch).repos),
|
||||
'etc/pacman.conf': get_base_distro(arch).get_pacman_conf(
|
||||
check_space=True,
|
||||
extra_repos=get_kupfer_https(arch).repos,
|
||||
in_chroot=True,
|
||||
),
|
||||
'etc/sudoers.d/wheel': "# allow members of group wheel to execute any command\n%wheel ALL=(ALL:ALL) ALL\n",
|
||||
'etc/hostname': profile['hostname'],
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue