This commit is contained in:
Christopher Cookman 2025-03-02 18:07:11 -07:00
parent 5f86e1f2aa
commit 5a4dc4d060

View file

@ -38,13 +38,13 @@ for i in "$@"; do
done done
# If not skip, ask for confirmation # If not skip, ask for confirmation
if [ "$SKIP_PROMPT" != true ]; then # if [ "$SKIP_PROMPT" != true ]; then
read -p "This script will install FreePBX Open-Source, Asterisk 20, and many other dependencies, do you want to continue? (y/n): " -n 1 -r # read -p "This script will install FreePBX Open-Source, Asterisk 20, and many other dependencies, do you want to continue? (y/n): " -n 1 -r
echo # echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then # if [[ ! $REPLY =~ ^[Yy]$ ]]; then
exit 1 # exit 1
fi # fi
fi # fi
apt-get update; apt-get update;
apt-get upgrade; apt-get upgrade;