2024-07-13 16:36:24 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
function installSW
|
|
|
|
end
|
|
|
|
|
|
|
|
function configureSW
|
|
|
|
end
|
|
|
|
|
|
|
|
function runInstaller -a action
|
|
|
|
if [ -z "$action" ] || [ "$action" = "install" ]
|
|
|
|
installSW
|
2024-07-14 08:10:04 +00:00
|
|
|
else if [ "$action" = "configure" ]
|
2024-07-13 16:36:24 +00:00
|
|
|
configureSW
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|