diff --git a/README.md b/README.md index 319ad83..6fe7a87 100644 --- a/README.md +++ b/README.md @@ -6,12 +6,12 @@ A little install script that installs FreePBX 17, but without all the commercial ```bash curl -sSL https://git.chrischro.me/ChrisChrome/freepbx-oss/raw/branch/main/install.sh | bash ``` - + ## Arguments - `-y` Skip all prompts diff --git a/install.sh b/install.sh index 3859887..1b8e250 100755 --- a/install.sh +++ b/install.sh @@ -38,13 +38,13 @@ for i in "$@"; do done # If not skip, ask for confirmation -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 - echo - if [[ ! $REPLY =~ ^[Yy]$ ]]; then - exit 1 - fi -fi +# 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 +# echo +# if [[ ! $REPLY =~ ^[Yy]$ ]]; then +# exit 1 +# fi +# fi apt-get update; apt-get upgrade;