Compare commits

..

2 Commits

Author SHA1 Message Date
Storm Dragon
1e24598316 Removed unneeded message from configure-stormux stub. 2024-03-07 17:29:16 -05:00
Storm Dragon
901d5cdb7a Updated first boot script. 2024-03-07 17:28:29 -05:00
2 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,13 @@
#!/usr/bin/env bash #!/usr/bin/env bash
if [[ -x /opt/configure-stormux/configure-stormux.sh ]]; then
exit 0
fi
if ! [[ -x /opt/configure-stormux/configure-stormux.sh ]]; then
exit 0
fi
if [[ "$(tty)" = "/dev/tty1" ]]; then if [[ "$(tty)" = "/dev/tty1" ]]; then
cat << "EOF" cat << "EOF"
Hello, and welcome to Stormux! Hello, and welcome to Stormux!
@ -14,5 +22,4 @@ Please press enter to continue.
EOF EOF
read -r read -r
sudo configure-stormux sudo configure-stormux
sudo rm -- "/etc/profile.d/stormux_first_boot.sh"
fi fi

View File

@ -54,8 +54,6 @@ echo "If you would like more options, run configure-stormux,"
echo "or you may configure your system manually." echo "or you may configure your system manually."
echo echo
echo "Thank you for choosing Stormux." echo "Thank you for choosing Stormux."
echo
echo "Removing first run script..."