Update setup.sh

This commit is contained in:
Jordan Wages 2025-07-25 15:14:36 -05:00
parent 18604b4960
commit 80f2530beb

View file

@ -1,4 +1,4 @@
#!/usr/bin/env bash
#!/bin/bash
###############################################################################
# setup.sh - Interactive Debian VM bootstrap wizard #
# Jordan-friendly edition (whiptail UI, aliases, neofetch, CIFS, etc.) #
@ -181,7 +181,7 @@ for host in "${CIFS_HOSTS[@]}"; do
grep -q "${host}.wageshouse" /etc/fstab || printf "# $TEMPLATE\n" "username" "password" >> /etc/fstab
fi
done
if ! mount -a 2>>"$LOGFILE"; then msg "⚠️ Some CIFS mounts failed. Rerun the script to correct credentials."; fi
if ! mount -a 2>>"$LOGFILE"; then msg "⚠️ Some CIFS mounts failed. Re-run the script to correct credentials."; fi
###############################################################################
# Summary #