14 lines
363 B
Fish
14 lines
363 B
Fish
#!/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
|
|
sudo systemctl enable systemd-networkd
|
|
sudo systemctl enable systemd-resolved
|
|
configureSWBase $argv
|
|
end
|
|
|
|
runInstaller $argv
|
|
end
|