rename and move run-scripts to run directory

This commit is contained in:
Tobias Powalowski 2022-11-23 07:28:35 +01:00
parent 3f4d37f179
commit 2159072ff9
24 changed files with 22 additions and 17 deletions

View file

@ -1 +1 @@
../lib/archboot/run-container.sh ../lib/archboot/run/container.sh

View file

@ -1 +1 @@
../lib/archboot/run-repository.sh ../lib/archboot/run/repository.sh

View file

@ -1 +1 @@
../lib/archboot/run-iso.sh ../lib/archboot/run/iso.sh

View file

@ -1 +1 @@
../lib/archboot/run-chroot-tarball.sh ../lib/archboot/run/chroot-tarball.sh

View file

@ -1 +1 @@
../lib/archboot/run-release.sh ../lib/archboot/run/release.sh

View file

@ -1 +1 @@
../lib/archboot/run-server-release.sh ../lib/archboot/run/server-release.sh

View file

@ -1 +1 @@
../lib/archboot/run-container.sh ../lib/archboot/run/container.sh

View file

@ -1 +1 @@
../lib/archboot/run-repository.sh ../lib/archboot/run/repository.sh

View file

@ -1 +1 @@
../lib/archboot/run-iso.sh ../lib/archboot/run/iso.sh

View file

@ -1 +1 @@
../lib/archboot/run-chroot-tarball.sh ../lib/archboot/run/chroot-tarball.sh

View file

@ -1 +1 @@
../lib/archboot/run-release.sh ../lib/archboot/run/release.sh

View file

@ -1 +1 @@
../lib/archboot/run-server-release.sh ../lib/archboot/run/server-release.sh

View file

@ -1 +1 @@
../lib/archboot/run-container.sh ../lib/archboot/run/container.sh

View file

@ -1 +1 @@
../lib/archboot/run-repository.sh ../lib/archboot/run/repository.sh

View file

@ -1 +1 @@
../lib/archboot/run-iso.sh ../lib/archboot/run/iso.sh

View file

@ -1 +1 @@
../lib/archboot/run-release.sh ../lib/archboot/run/release.sh

View file

@ -1 +1 @@
../lib/archboot/run-server-release.sh ../lib/archboot/run/server-release.sh

View file

@ -11,6 +11,7 @@ _BIN="/usr/bin"
_ETC="/etc/archboot" _ETC="/etc/archboot"
_LIB="/usr/lib/archboot" _LIB="/usr/lib/archboot"
_INST="/${_LIB}/installer" _INST="/${_LIB}/installer"
_RUN="/${_LIB}/run"
_ZRAM_SIZE=${_ZRAM_SIZE:-"3G"} _ZRAM_SIZE=${_ZRAM_SIZE:-"3G"}
[[ "${_RUNNING_ARCH}" == "x86_64" || "${_RUNNING_ARCH}" == "riscv64" ]] && VMLINUZ="vmlinuz-linux" [[ "${_RUNNING_ARCH}" == "x86_64" || "${_RUNNING_ARCH}" == "riscv64" ]] && VMLINUZ="vmlinuz-linux"
[[ "${_RUNNING_ARCH}" == "aarch64" ]] && VMLINUZ="Image" [[ "${_RUNNING_ARCH}" == "aarch64" ]] && VMLINUZ="Image"
@ -124,6 +125,10 @@ _download_latest() {
for i in ${LIBS}; do for i in ${LIBS}; do
wget -q "${_SOURCE}${_LIB}/${i}?inline=false" -O "${_LIB}/${i}" wget -q "${_SOURCE}${_LIB}/${i}?inline=false" -O "${_LIB}/${i}"
done done
LIBS="container.sh release.sh"
for i in ${LIBS}; do
wget -q "${_SOURCE}${_RUN}/${i}?inline=false" -O "${_LIB}/${i}"
done
SETUPS="autoconfiguration.sh autoprepare.sh base.sh blockdevices.sh bootloader.sh btrfs.sh common.sh \ SETUPS="autoconfiguration.sh autoprepare.sh base.sh blockdevices.sh bootloader.sh btrfs.sh common.sh \
configuration.sh mountpoints.sh network.sh pacman.sh partition.sh storage.sh" configuration.sh mountpoints.sh network.sh pacman.sh partition.sh storage.sh"
for i in ${SETUPS}; do for i in ${SETUPS}; do