aboutsummaryrefslogtreecommitdiff
path: root/configs/releng/profiledef.sh
Commit message (Collapse)AuthorAgeFilesLines
* profiledef.sh: Remove www. from archlinux.orgnl67202020-12-261-1/+1
| | | | See https://lists.archlinux.org/pipermail/arch-devops/2020-December/000474.html .
* Fix issues with file ownerships/modesDavid Runge2020-11-301-1/+1
| | | | | | | | | | | 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
* Allow specifying ownership and mode of custom airootfs files and directoriesnl67202020-11-301-0/+8
| | | | | | | | | | | | | profiledef.sh can now contain an associative array called file_permissions which can be used to set custom ownership and mode of custom airootfs files. The array's keys contain the path and the value is a colon separated list of owner UID, owner GID and access mode. For example: file_permissions=( ["/etc/shadow"]="0:0:400" ) This means that mkarchiso now copies airootfs files (and directores) without permissions and anything that should be owned by a user other than root and/or if the mode should be something other than 644 for files and 755 for directories must to be listed in ${file_permission[@]} in profiledef.sh. Fixes https://gitlab.archlinux.org/archlinux/archiso/-/issues/61 .
* Use better xz optionsSven-Hendrik Haase2020-11-031-0/+1
| | | | | Default: 732M With these options: 675M
* archiso/mkarchiso: allow choosing boot modes from profiledef.shnl67202020-08-171-1/+1
| | | | | | | | | | | Boot mode names are: - bios_syslinux.mbr: SYSLINUX in MBR - bios.syslinux.eltorito: SYSLINUX (ISOLINUX) via El Torito - uefi-x64.systemd-boot.esp: systemd-boot on ESP in MBR - uefi-x64.systemd-boot.eltorito: systemd-boot on ESP via El Torito It is not yet possible to create an ISO with only El Torito or only MBR boot modes!
* archiso/mkarchiso: start preparing a build_profile commandnl67202020-08-171-0/+12
Nothing is implemented yet! configs/releng/profiledef.sh: A test profile.