File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env bash
2+ # shellcheck disable=SC2034
3+
4+ iso_name=" tcetlinux"
5+ iso_label=" TCETLINUX_$( date --date=" @${SOURCE_DATE_EPOCH:- $(date +% s)} " +%Y%m) "
6+ iso_publisher=" DemonKiller <https://demonkiller.tech>"
7+ iso_application=" TCET Linux Live/Rescue CD"
8+ iso_version=" $( date --date=" @${SOURCE_DATE_EPOCH:- $(date +% s)} " +%Y.%m.%d) "
9+ install_dir=" tcet"
10+ buildmodes=(' iso' )
11+ bootmodes=(' bios.syslinux.mbr' ' bios.syslinux.eltorito'
12+ ' uefi-ia32.grub.esp' ' uefi-x64.grub.esp'
13+ ' uefi-ia32.grub.eltorito' ' uefi-x64.grub.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+ file_permissions=(
19+ [" /etc/shadow" ]=" 0:0:400"
20+ [" /root" ]=" 0:0:750"
21+ [" /root/.automated_script.sh" ]=" 0:0:755"
22+ [" /usr/local/bin/choose-mirror" ]=" 0:0:755"
23+ [" /usr/local/bin/Installation_guide" ]=" 0:0:755"
24+ [" /usr/local/bin/livecd-sound" ]=" 0:0:755"
25+ )
You can’t perform that action at this time.
0 commit comments