diff options
| author | David Runge <dvzrv@archlinux.org> | 2020-11-30 21:48:08 +0100 |
|---|---|---|
| committer | David Runge <dvzrv@archlinux.org> | 2020-11-30 21:48:08 +0100 |
| commit | c10004dfecaea195b77fd883224023cc8f2eaaaf (patch) | |
| tree | cb58eb59de5c24dc34f56eb5bddef5eb28e02d77 /configs/releng | |
| parent | 863247d0a6980906dad0308044f2f3b6ceccc110 (diff) | |
| download | archiso-c10004dfecaea195b77fd883224023cc8f2eaaaf.tar.gz archiso-c10004dfecaea195b77fd883224023cc8f2eaaaf.tar.bz2 | |
Fix issues with file ownerships/modes
archiso/mkarchiso:
Make sure to always compare absolute paths in `_make_custom_airootfs()` (as `realpath` is used).
Remove `echo` calls that prevent the setting of actual file ownerships and modes.
configs/releng/profiledef.sh:
Set file mode of /root/.automated_script.sh to 755.
Fixes #82
Diffstat (limited to 'configs/releng')
| -rw-r--r-- | configs/releng/profiledef.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/releng/profiledef.sh b/configs/releng/profiledef.sh index 051a390..d046c9c 100644 --- a/configs/releng/profiledef.sh +++ b/configs/releng/profiledef.sh @@ -14,7 +14,7 @@ airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' file_permissions=( ["/etc/shadow"]="0:0:400" ["/root"]="0:0:750" - ["/root/.automated_script.sh"]="0:0:750" + ["/root/.automated_script.sh"]="0:0:755" ["/usr/local/bin/choose-mirror"]="0:0:755" ["/usr/local/bin/Installation_guide"]="0:0:755" ["/usr/local/bin/livecd-sound"]="0:0:755" |
