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
|
|
|
|
systemctl enable systemd-networkd
|
2024-12-08 01:49:28 +00:00
|
|
|
systemctl enable systemd-resolved
|
2024-12-08 00:03:06 +00:00
|
|
|
configureSWBase $argv
|
|
|
|
end
|
|
|
|
|
|
|
|
runInstaller $argv
|
|
|
|
end
|