2020-08-14 06:52:59 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
|
|
|
|
iso_name="archlinux"
|
|
|
|
iso_label="ARCH_$(date +%Y%m)"
|
2020-12-26 19:11:06 +01:00
|
|
|
iso_publisher="Arch Linux <https://archlinux.org>"
|
2020-08-14 06:52:59 +02:00
|
|
|
iso_application="Arch Linux Live/Rescue CD"
|
|
|
|
iso_version="$(date +%Y.%m.%d)"
|
|
|
|
install_dir="arch"
|
2020-08-12 18:42:02 +02:00
|
|
|
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
|
2020-08-14 06:52:59 +02:00
|
|
|
arch="x86_64"
|
|
|
|
pacman_conf="pacman.conf"
|
2020-10-24 14:53:57 +02:00
|
|
|
airootfs_image_type="squashfs"
|
2020-11-03 21:12:38 +01:00
|
|
|
airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
|
2020-11-14 10:43:13 +01:00
|
|
|
file_permissions=(
|
|
|
|
["/etc/shadow"]="0:0:400"
|
|
|
|
["/root"]="0:0:750"
|
2020-11-30 21:48:08 +01:00
|
|
|
["/root/.automated_script.sh"]="0:0:755"
|
2020-11-14 10:43:13 +01:00
|
|
|
["/usr/local/bin/choose-mirror"]="0:0:755"
|
|
|
|
["/usr/local/bin/Installation_guide"]="0:0:755"
|
|
|
|
["/usr/local/bin/livecd-sound"]="0:0:755"
|
|
|
|
)
|