changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > box / profiledef.sh

changeset 2: 2fafbe22bd34
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 31 May 2024 17:30:09 -0400
permissions: -rw-r--r--
description: init releng
1 #!/usr/bin/env bash
2 # shellcheck disable=SC2034
3 
4 iso_name="archlinux"
5 iso_label="ARCH_$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y%m)"
6 iso_publisher="Arch Linux <https://archlinux.org>"
7 iso_application="Arch Linux Live/Rescue DVD"
8 iso_version="$(date --date="@${SOURCE_DATE_EPOCH:-$(date +%s)}" +%Y.%m.%d)"
9 install_dir="arch"
10 buildmodes=('iso')
11 bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito'
12  'uefi-ia32.systemd-boot.esp' 'uefi-x64.systemd-boot.esp'
13  'uefi-ia32.systemd-boot.eltorito' 'uefi-x64.systemd-boot.eltorito')
14 arch="x86_64"
15 pacman_conf="pacman.conf"
16 airootfs_image_type="squashfs"
17 airootfs_image_tool_options=('-comp' 'xz' '-Xbcj' 'x86' '-b' '1M' '-Xdict-size' '1M')
18 bootstrap_tarball_compression=('zstd' '-c' '-T0' '--auto-threads=logical' '--long' '-19')
19 file_permissions=(
20  ["/etc/shadow"]="0:0:400"
21  ["/root"]="0:0:750"
22  ["/root/.automated_script.sh"]="0:0:755"
23  ["/root/.gnupg"]="0:0:700"
24  ["/usr/local/bin/choose-mirror"]="0:0:755"
25  ["/usr/local/bin/Installation_guide"]="0:0:755"
26  ["/usr/local/bin/livecd-sound"]="0:0:755"
27 )