diff options
| author | nippy <you@example.com> | 2026-04-12 18:11:38 +0200 |
|---|---|---|
| committer | nippy <you@example.com> | 2026-04-12 18:11:38 +0200 |
| commit | 89d442a74ab0b3fc49f838c15f3f722f1be74720 (patch) | |
| tree | 97c021670032230f020c2b45e6cd2aabd3dc1a00 /releng/profiledef.sh | |
| parent | 71d4e0832da17f0ba97b7a5db86c6bf45be4e894 (diff) | |
| download | RaveOS-build-iso-89d442a74ab0b3fc49f838c15f3f722f1be74720.tar.gz RaveOS-build-iso-89d442a74ab0b3fc49f838c15f3f722f1be74720.zip | |
live
Diffstat (limited to 'releng/profiledef.sh')
| -rw-r--r-- | releng/profiledef.sh | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/releng/profiledef.sh b/releng/profiledef.sh new file mode 100644 index 0000000..959862f --- /dev/null +++ b/releng/profiledef.sh @@ -0,0 +1,34 @@ +#!/usr/bin/env bash +# shellcheck disable=SC2034 + +iso_name="raveos" +iso_label="raveos_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)" +iso_publisher="RaveOS" +iso_application="RaveOS Live/Rescue DVD" +iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)" +install_dir="arch" +buildmodes=('iso') +bootmodes=('bios.syslinux' + 'uefi.systemd-boot') +pacman_conf="pacman.conf" +airootfs_image_type="squashfs" +airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M') +bootstrap_tarball_compression=('zstd' '-c' '-T0' '--auto-threads=logical' '--long' '-19') +file_permissions=( + ["/etc/shadow"]="0:0:400" + ["/etc/gshadow"]="0:0:400" + ["/root"]="0:0:750" + ["/root/.automated_script.sh"]="0:0:755" + ["/root/.gnupg"]="0:0:700" + ["/root/.loader.conf"]="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" + ["/etc/pacman.d/chaotic-mirrorlist"]="0:0:644" + ["/etc/pacman.d/mirrorlist"]="0:0:644" + ["/etc/pacman.d/hooks/reflector-mirrorlist.hook"]="0:0:644" + ["/etc/group"]="0:0:400" + ["/root/.config/openbox/autostart"]="0:0:755" + ["/etc/profile.d/autostart.sh"]="0:0:755" + ["/usr/share/calamares/kernel-install/95-raveos.install"]="0:0:755" +) |