23 lines
692 B
Bash
23 lines
692 B
Bash
#!/usr/bin/env bash
|
|
# shellcheck disable=SC2034
|
|
|
|
iso_name="KIT_NAME_SHORT-Linux"
|
|
iso_label="KIT_NAME_SHORT_LINUX"
|
|
iso_publisher="SUPPORT_URL"
|
|
iso_application="KIT_NAME_FULL Linux Environment"
|
|
iso_version="$(date +%Y-%m-%d)"
|
|
install_dir="arch"
|
|
buildmodes=('iso')
|
|
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.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=(
|
|
["/root"]="0:0:750"
|
|
["/etc/shadow"]="0:0:400"
|
|
["/etc/gshadow"]="0:0:400"
|
|
["/etc/skel/.ssh"]="0:0:700"
|
|
["/etc/skel/.ssh/authorized_keys"]="0:0:600"
|
|
["/etc/skel/.ssh/id_rsa"]="0:0:600"
|
|
)
|