-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
profiledef.sh
executable file
·28 lines (26 loc) · 1.03 KB
/
profiledef.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
#
# Profile modified for ArchBang
# by Mr Green [[email protected]]
iso_name="archbangx-rc"
iso_label="ARCHBANG_$(date +%d%m)"
iso_publisher="ArchBang Linux <https://www.archbang.org>"
iso_application="ArchBang Linux Live/Rescue Iso"
iso_version="$(date +%d%m)"
install_dir="arch"
buildmodes=("iso")
#bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-x64.systemd-boot.esp' 'uefi-x64.systemd-boot.eltorito')
bootmodes=('bios.syslinux.mbr' 'bios.syslinux.eltorito' 'uefi-ia32.grub.esp' 'uefi-x64.grub.esp' 'uefi-ia32.grub.eltorito' 'uefi-x64.grub.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')
bootstrap_tarball_compression=('zstd' '-c' '-T0' '--auto-threads=logical' '--long' '-19')
file_permissions=(
["/etc/shadow"]="0:0:400"
["/root"]="0:0:750"
["/root/.gnupg"]="0:0:700"
["/etc/skel/AB_Scripts/"]="0:0:755"
["/root/mvuser"]="0:0:755"
)
#bootstrap_tarball_compression=(gzip -cn9)