PortValhalla/scripts/Common/OS/install.fish

82 lines
2.1 KiB
Fish
Raw Permalink Normal View History

2024-07-13 13:12:35 +00:00
#!/bin/env fish
set -l dir (status dirname)
source "$dir/../Scripts/config.fish"
source "$dir/../Scripts/hooks.fish"
if [ (id -u) -eq 0 ]
2024-09-22 15:50:05 +00:00
set -l name (getOSConfig setupUser.name)
2024-07-13 13:12:35 +00:00
set -l sudoConfig "/etc/sudoers.d/PortValhalla"
rm ~/.bash_profile
2024-07-13 13:12:35 +00:00
2024-10-12 15:19:59 +00:00
begin
2024-10-06 19:25:34 +00:00
echo "Creating setup user"
2024-09-22 22:23:41 +00:00
2024-10-06 19:25:34 +00:00
and useradd \
--comment "PortValhalla Setup User" \
--system \
--no-user-group \
--groups nix-users \
--create-home \
--uid (getOSConfig setupUser.id --json) \
"$name"
end
2024-07-13 13:12:35 +00:00
and begin
echo "$name ALL=(ALL:ALL) NOPASSWD: ALL"
2024-10-06 19:25:34 +00:00
end >"$sudoConfig"
2024-07-13 13:12:35 +00:00
2024-09-19 20:29:34 +00:00
and sudo --preserve-env --set-home --user "$name" "$INSTALLER_SCRIPT"
2024-07-13 13:12:35 +00:00
rm "$sudoConfig"
2024-09-13 13:05:17 +00:00
userdel -rf "$name"
2024-07-13 13:12:35 +00:00
else
if not type -q getDeploymentScript
function getDeploymentScript
echo "No deployment script specified! No software will be installed." 1>&2
false
end
end
set -l deployScript (getDeploymentScript)
2024-07-13 13:49:55 +00:00
runHook initialize || true
2024-09-13 13:10:29 +00:00
and runHook installOS || true
2024-07-19 22:46:02 +00:00
2024-09-13 13:31:42 +00:00
and runHook installSoftware || begin
2024-09-22 22:23:41 +00:00
echo "Installing software..."
and if [ -n "$deployScript" ]
source $deployScript
end
end
2024-09-26 22:54:27 +00:00
and runHook addUsers || begin
source "$dir/users.fish"
end
runHook initializeUsers || begin
if [ -n "$deployScript" ]
source "$dir/../Scripts/config.fish"
2024-09-22 22:23:41 +00:00
for name in (getUsers | jq '.[]' --raw-output0 | string split0)
2024-09-22 22:23:41 +00:00
echo "Configuring user `$name`..."
and source $deployScript userConfig $name
end
end
end
2024-09-13 13:31:42 +00:00
and runHook postInstall || true
2024-09-26 22:50:29 +00:00
and sudo git config remove-section --system safe || true
2024-09-22 13:14:42 +00:00
and begin
2024-09-22 22:23:41 +00:00
echo "Cleaning installation scripts..."
2024-09-22 13:14:42 +00:00
set -l projectPath (realpath "$(status dirname)/../../..")
cd (dirname "$projectPath")
sudo rm -rf "$projectPath"
end
and echo "The installation finished successfully!"
2024-09-19 20:29:50 +00:00
and echo "This machine will reboot in 5 seconds..."
and echo "Press CTRL-C to abort..."
and sleep 5
2024-09-20 03:35:15 +00:00
and systemctl reboot -i
2024-07-13 13:12:35 +00:00
end