Execute missing installation steps

This commit is contained in:
Manuel Thalmann 2024-09-21 17:31:49 +02:00
parent c220303628
commit 298c033881
2 changed files with 14 additions and 4 deletions

View file

@ -1,6 +1,7 @@
#!/bin/env fish
begin
set -l dir (status dirname)
set -l base "$dir/../../../Common/Software/Virtual Machine Manager/main.fish"
source "$dir/../../Scripts/software.fish"
function installSW
@ -16,10 +17,14 @@ begin
virt-bootstrap-git
end
function configureSW -V dir
function configureSW -V base
sudo systemctl enable --now libvirtd
sudo systemctl enable --now virtlogd
fish "$dir/../../../Common/Software/Virtual Machine Manager/main.fish" configure
fish "$base" configure
end
function userConfig -V base
fish "$base" userConfig $argv
end
runInstaller $argv

View file

@ -1,6 +1,7 @@
#!/bin/env fish
begin
set -l dir (status dirname)
set -l base "$dir/../../../Common/Software/docker/main.fish"
source "$dir/../../Scripts/software.fish"
function installSW
@ -11,8 +12,12 @@ begin
docker-scan
end
function configureSW -V dir
fish "$dir/../../../Common/Software/docker/main.fish" configure
function configureSW -V base
fish "$base" configure
end
function userConfig -V base
fish "$base" userConfig $argv
end
runInstaller $argv