Add a script for testing the Arch installation
This commit is contained in:
parent
7f539806da
commit
b80f2de860
1 changed files with 28 additions and 0 deletions
28
scripts/test/arch-install.fish
Executable file
28
scripts/test/arch-install.fish
Executable 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"
|
Loading…
Reference in a new issue