16 lines
293 B
Fish
Executable file
16 lines
293 B
Fish
Executable file
#!/bin/env fish
|
|
begin
|
|
set -l dir (status dirname)
|
|
source "$dir/../../Scripts/software.fish"
|
|
|
|
function configureSW -V dir
|
|
sudo systemctl enable --now docker
|
|
end
|
|
|
|
function userConfig -a name
|
|
sudo usermod -aG docker "$name"
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|