archcraft/profiledef.sh

25 lines
835 B
Bash
Raw Normal View History

2022-03-30 11:07:43 +00:00
#!/usr/bin/env bash
# shellcheck disable=SC2034
2022-03-30 11:10:22 +00:00
iso_name="archcraft"
iso_label="archcraft_$(date +%Y%m)"
iso_publisher="Aditya Shakya <http://www.github.com/adi1090x>"
iso_application="Archcraft Live/Installation/Rescue CD"
2022-03-30 11:07:43 +00:00
iso_version="$(date +%Y.%m.%d)"
install_dir="arch"
buildmodes=('iso')
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
arch="x86_64"
pacman_conf="pacman.conf"
airootfs_image_type="squashfs"
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
file_permissions=(
2022-03-30 11:10:22 +00:00
["/etc/shadow"]="0:0:0400"
["/etc/gshadow"]="0:0:0400"
["/etc/sudoers.d"]="0:0:750"
2022-03-30 11:07:43 +00:00
["/root"]="0:0:750"
["/root/.automated_script.sh"]="0:0:755"
2022-03-30 11:10:22 +00:00
["/root/customize_airootfs.sh"]="0:0:755"
2022-03-30 11:07:43 +00:00
["/usr/local/bin/choose-mirror"]="0:0:755"
)