14 lines
311 B
Fish
14 lines
311 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
|
||
|
systemctl enable systemd-networkd
|
||
|
configureSWBase $argv
|
||
|
end
|
||
|
|
||
|
runInstaller $argv
|
||
|
end
|