rearrange defaults

This commit is contained in:
Tobias Powalowski 2022-02-21 10:56:11 +01:00
parent 680cf22e64
commit 8105765bb1

View file

@ -1,18 +1,17 @@
# defaults for archboot # defaults for archboot
# firmware to install # firmware to install
_LINUX_FIRMWARE="linux-firmware" _LINUX_FIRMWARE="linux-firmware"
# grub config to use
_GRUB_CONFIG="/usr/share/archboot/grub/grub.cfg"
### server setup
# release directory
_DIR="$(date +%Y.%m)"
# delete old version from server
_PURGE_DATE="3 month"
# custom pacman.conf on x86_64 # custom pacman.conf on x86_64
_CUSTOM_PACMAN_CONF="/etc/archboot/pacman.conf.archboot" _CUSTOM_PACMAN_CONF="/etc/archboot/pacman.conf.archboot"
# custom mirrorlist on x86_64 # custom mirrorlist on x86_64
_CUSTOM_MIRRORLIST="/etc/archboot/mirrorlist.archboot" _CUSTOM_MIRRORLIST="/etc/archboot/mirrorlist.archboot"
# grub config to use
_GRUB_CONFIG="/usr/share/archboot/grub/grub.cfg"
### server setup
_DIR="$(date +%Y.%m)"
# delete old version from server
_PURGE_DATE="3 month"
_PACMAN_AARCH64="pacman-aarch64-chroot"
_PACMAN_AARCH64_CHROOT="${_PACMAN_AARCH64}-latest.tar.zst"
# local paths # local paths
_ISO_HOME="/home/tobias/Arch/iso" _ISO_HOME="/home/tobias/Arch/iso"
_ISO_HOME_ARCH="${_ISO_HOME}/${_ARCH}" _ISO_HOME_ARCH="${_ISO_HOME}/${_ARCH}"
@ -23,6 +22,8 @@ _SERVER_HOME="/home/tpowa"
_SERVER_PUBLIC="${_SERVER_HOME}/public_html" _SERVER_PUBLIC="${_SERVER_HOME}/public_html"
_SERVER_IMAGE_DIR="${_SERVER_PUBLIC}/archboot-images" _SERVER_IMAGE_DIR="${_SERVER_PUBLIC}/archboot-images"
_SERVER_SOURCE_DIR="${_SERVER_PUBLIC}/archboot-sources" _SERVER_SOURCE_DIR="${_SERVER_PUBLIC}/archboot-sources"
_PACMAN_AARCH64="pacman-aarch64-chroot"
_PACMAN_AARCH64_CHROOT="${_PACMAN_AARCH64}-latest.tar.zst"
_SERVER_PACMAN_AARCH64="${_SERVER_PUBLIC}/archboot-helper/${_PACMAN_AARCH64}" _SERVER_PACMAN_AARCH64="${_SERVER_PUBLIC}/archboot-helper/${_PACMAN_AARCH64}"
# public download paths # public download paths
_ARCHBOOT_PUBLIC="https://pkgbuild.com/~tpowa" _ARCHBOOT_PUBLIC="https://pkgbuild.com/~tpowa"