new installation process

This commit is contained in:
pvincent
2026-08-18 18:18:57 +04:00
parent 827f0bb55f
commit 30e2a650eb
+5 -1
View File
@@ -59,5 +59,9 @@ set -Eeuo pipefail
assert_supported_distro
sudo_root
deployment_type_adjective="${1:-installed}"
if once_installed; then upgrade; else install; fi
[[ $deployment_type_adjective == 'installed' ]] && exec bash -l
if [[ $deployment_type_adjective == 'installed' ]]; then
exec bash -l
fi