PortValhalla/scripts/Arch/Software/sudo/main.fish

16 lines
298 B
Fish
Raw Normal View History

#!/bin/env fish
begin
set -l dir (status dirname)
source "$dir/../../Scripts/software.fish"
function installSW
pacinst sudo
end
function configureSW
2024-10-06 19:25:34 +00:00
echo "%wheel ALL=(ALL:ALL) ALL" | sudo tee /etc/sudoers.d/wheel >/dev/null
end
runInstaller $argv
end