solarityliveboot/profiledef.sh

32 lines
1.2 KiB
Bash
Raw Normal View History

2022-01-27 00:50:47 -05:00
#!/usr/bin/env bash
# shellcheck disable=SC2034
iso_name="solarityliveboot"
2023-05-18 00:11:46 -04:00
iso_label="SOL_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
iso_publisher="Solarity Industries <https://lgartner.com>"
2022-01-27 00:50:47 -05:00
iso_application="Solarity Liveboot ISO"
2023-05-18 00:11:46 -04:00
iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
2022-01-27 00:50:47 -05:00
install_dir="solboot"
buildmodes=('iso')
2023-05-18 00:11:46 -04:00
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
'uefi-ia32.grub.esp' 'uefi-x64.grub.esp'
'uefi-ia32.grub.eltorito' 'uefi-x64.grub.eltorito')
2022-01-27 00:50:47 -05: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=(
["/etc/shadow"]="0:0:0400"
["/etc/gshadow"]="0:0:0400"
["/etc/sudoers.d"]="0:0:0700"
["/etc/sudoers.d/wheel"]="0:0:0600"
["/root"]="0:0:750"
["/root/.automated_script.sh"]="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"
2023-10-05 04:48:49 -04:00
["/usr/local/bin/import-gsettings"]="0:0:755"
2024-02-16 18:34:12 -05:00
["/usr/local/bin/cowspace-set"]="0:0:755"
["/etc/profile.d/99-greeting.sh"]="0:0:755"
2022-01-27 00:50:47 -05:00
)