Execute missing installation steps
This commit is contained in:
parent
39d40076ba
commit
8a4b25b8a5
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue