2024-12-08 00:03:06 +00:00
|
|
|
#!/bin/env fish
|
|
|
|
begin
|
|
|
|
set -l dir (status dirname)
|
|
|
|
source "$dir/../../../lib/software.fish"
|
|
|
|
inherit "$dir/../../../Common/Software/systemd-networkd/main.fish"
|
|
|
|
|
|
|
|
function configureSW -V dir
|
2024-12-08 05:15:43 +00:00
|
|
|
sudo systemctl enable systemd-networkd
|
|
|
|
sudo systemctl enable systemd-resolved
|
2024-12-08 00:03:06 +00:00
|
|
|
configureSWBase $argv
|
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|