Skip to content
Snippets Groups Projects
Verified Commit 839f7433 authored by David Runge's avatar David Runge :chipmunk:
Browse files

Fixing ownership in airootfs customization

configs/releng/build.sh:
Fixing wrong ownership of files when copying overlay modifications from
the config's airootfs directory to the working directory in
make_customize_airootfs() by using the cp flag
'--no-preserve=ownership'.

Thanks to Marcos Mello and Francois Dupoux of sysresccd
(https://gitlab.com/fdupoux/sysresccd-src) for making this fix
available.

Closes #11
parent 6bf452f5
No related branches found
No related tags found
1 merge request!15Fixing ownership in airootfs customization
......@@ -95,7 +95,7 @@ make_setup_mkinitcpio() {
# Customize installation (airootfs)
make_customize_airootfs() {
cp -af ${script_path}/airootfs ${work_dir}/x86_64
cp -af --no-preserve=ownership ${script_path}/airootfs ${work_dir}/x86_64
cp ${script_path}/pacman.conf ${work_dir}/x86_64/airootfs/etc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment