16 lines
293 B
Fish
16 lines
293 B
Fish
|
#!/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
|