PortValhalla/scripts/Common/OS/setup.fish

127 lines
4.6 KiB
Fish
Raw Normal View History

2024-07-13 07:52:30 +00:00
#!/bin/env fish
2024-07-16 13:22:15 +00:00
function runSetup
2024-07-13 07:52:30 +00:00
set -l dir (status dirname)
2024-11-01 14:32:43 +00:00
source "$dir/../../lib/action.fish"
set -l projectRoot (realpath "$dir/../../..")
set -l projectName (basename "$projectRoot")
set -l PROJECT_CLONE_ROOT "/opt/$(basename "$projectName")"
2024-12-05 08:45:49 +00:00
function setupAction -V dir -V projectRoot -V PROJECT_CLONE_ROOT
2024-11-01 14:32:43 +00:00
source "$dir/../../lib/hooks.fish"
2024-12-05 13:13:52 +00:00
source "$dir/../../lib/nix.fish"
2024-12-04 18:02:05 +00:00
source "$dir/../../lib/restoration.fish"
2024-11-01 14:32:43 +00:00
source "$dir/../../lib/settings.fish"
2024-12-07 20:46:53 +00:00
set -l mountDir (getOSConfig fileSystems.rootDir)
2024-11-01 14:32:43 +00:00
if not type -q runChroot
function runChroot -S
command chroot $argv
end
end
2024-12-08 16:27:03 +00:00
if not type -q getAutologinDisableCommand
function getAutologinDisableCommand
echo "true"
end
end
2024-11-01 14:32:43 +00:00
function getCloneFile -S -a path
set -l relativeDir (realpath --relative-to "$projectRoot" "$dir")
set -l relativePath (realpath --relative-to "$dir" "$path")
echo "$PROJECT_CLONE_ROOT/$relativeDir/$relativePath"
end
2024-11-01 14:32:43 +00:00
function runInOS -S
set -l script /root/run_once
wrapScript $argv | chroot "$mountDir" tee "$script" >/dev/null
and runChroot "$mountDir" chmod +x "$script"
and runChroot "$mountDir" "$script"
and runChroot "$mountDir" rm "$script"
end
2024-11-01 14:32:43 +00:00
function wrapScript -S
printf %s\n \
"cd $PROJECT_CLONE_ROOT" \
"$argv"
end
2024-12-04 18:02:05 +00:00
initBackupConfig --action restore
2024-12-05 08:45:08 +00:00
echo "Partitioning drives..."
begin
set -l script (mktemp)
chmod +x "$script"
2024-12-07 20:46:53 +00:00
and getOSConfig fileSystems.script >"$script"
2024-12-05 08:45:08 +00:00
and "$script"
and rm "$script"
end
2024-12-04 18:02:05 +00:00
if [ -n "$VALHALLA_BACKUP_SERVER_KEY" ]
set -l knownHosts /root/.ssh/known_hosts
2024-12-05 08:53:31 +00:00
mkdir -p (dirname "$mountDir$VALHALLA_BACKUP_SERVER_KEY")
mkdir -p (dirname "$mountDir$knownHosts")
2024-12-04 18:02:05 +00:00
cp "$VALHALLA_BACKUP_SERVER_KEY" "$mountDir$VALHALLA_BACKUP_SERVER_KEY"
cp $knownHosts "$mountDir$knownHosts"
end
2024-11-01 14:32:43 +00:00
and echo "Cloning project..."
and source "$dir/../../lib/copy-repo.fish" "$mountDir$PROJECT_CLONE_ROOT"
and begin
set -l path "$mountDir/$nixPkgsDir"
and mkdir -p (dirname "$path")
and cp -r "$nixPkgsDir" "$path"
2024-12-05 23:55:51 +00:00
and git -C "$path" reset --hard
end
2024-12-05 09:25:28 +00:00
and runHook initOS "Please set up a function `initOS` for initializing the mounted OS and installing valhalla dependencies"
2024-12-05 08:59:04 +00:00
and runChroot "$mountDir" git config --system --add safe.directory "$PROJECT_CLONE_ROOT"
and runHook --force bootstrapSetup "Please set up a function `bootstrapSetup` for installing `fish` into the "
2024-12-05 09:09:35 +00:00
and runHook setupOS
2024-11-01 14:32:43 +00:00
and echo "Preparing auto-login..."
and runHook --force autologin "Please set up a function `autologin` for setting up autologin for the `root` user"
2024-09-22 22:23:41 +00:00
2024-11-01 14:32:43 +00:00
and begin
set -l profile "/root/.bash_profile"
begin
set -l profile (string escape "$profile")
set -l tmp (string escape "$profile""_")
set -l script (string escape (getCloneFile (getInstallerScript)))
printf "%s\n" \
"mv $profile $tmp" \
(wrapScript (
string join " " \
(begin
for var in \
CONFIG_NAME \
VALHALLA_BACKUP_DISABLED \
VALHALLA_BACKUP_DIR \
VALHALLA_BACKUP_SERVER \
VALHALLA_BACKUP_SERVER_PORT \
VALHALLA_BACKUP_SERVER_USER \
VALHALLA_BACKUP_SERVER_KEY
echo "$var=$(string escape "$$var")"
end
end) \
(string escape $script) "&&")) \
2024-12-08 16:27:03 +00:00
"rm $tmp &&" \
"$(getAutologinDisableCommand) ||" \
"mv $tmp $profile"
end | runChroot "$mountDir" tee "$profile" >/dev/null
end
2024-11-01 14:32:43 +00:00
end
2024-09-22 22:23:41 +00:00
2024-11-03 21:36:30 +00:00
function actionPostRun
2024-11-01 14:32:43 +00:00
echo "Setup finished!"
and echo "This machine will reboot in 5 seconds..."
and echo "Press CTRL-C to abort..."
and sleep 5
and systemctl reboot
end
2024-11-01 14:32:43 +00:00
runAction setupAction
2024-07-13 07:52:30 +00:00
end