archcraft/profile/profiledef.sh

28 lines
1014 B
Bash
Raw Permalink 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"
2023-07-05 10:38:42 +00:00
iso_label="ARCHCRAFT_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
2022-03-30 11:10:22 +00:00
iso_publisher="Aditya Shakya <http://www.github.com/adi1090x>"
iso_application="Archcraft Live/Installation/Rescue CD"
2023-07-05 10:38:42 +00:00
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
2022-03-30 11:07:43 +00:00
install_dir="arch"
buildmodes=('iso')
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
'uefi-ia32.grub.esp' 'uefi-x64.grub.esp'
'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito')
2022-03-30 11:07:43 +00:00
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-12-29 11:39:32 -01:00
["/etc/shadow"]="0:0:400"
2022-03-30 11:10:22 +00:00
["/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"
2022-12-29 11:39:32 -01:00
["/usr/local/bin/xflock4"]="0:0:755"
2022-03-30 11:07:43 +00:00
)