Add a script for testing the Arch installation

This commit is contained in:
Manuel Thalmann 2024-11-05 17:47:45 +01:00
parent 336f60f069
commit 2b977b07c2

28
scripts/test/arch-install.fish Executable file
View file

@ -0,0 +1,28 @@
#!/bin/env fish
set -l dir (status dirname)
set -l container valhalla-test
set -l containerDir "/var/lib/lxc/$container"
set -l valhallaRoot "opt/PortValhalla"
sudo lxc-stop "$container"
sudo lxc-destroy "$container"
sudo lxc-create "$container" -t download -- --dist archlinux --release current --arch amd64
sudo mkdir -p "$containerDir/rootfs/$valhallaRoot"
begin
printf "%s\n" \
"# For docker" \
"lxc.apparmor.profile = unconfined" \
"" \
"# Shared Folder" \
"lxc.mount.entry = $(realpath "$dir/../..") $valhallaRoot none bind 0 0"
end | sudo tee -a "$containerDir/config" > /dev/null
sudo lxc-start "$container"
while not sudo lxc-attach "$container" -- ping -q -c1 5.9.164.112 &>/dev/null
sleep .1
end
sudo lxc-attach "$container" -- systemctl start systemd-networkd-wait-online.service
sudo lxc-attach "$container" -- pacman --noconfirm -Syu fish
sudo lxc-attach "$container" -- "/$valhallaRoot/scripts/arch-install.fish"