Files
fusionpbx-install.sh/ubuntu/pre-install.sh
AdSecIT 9d7fb24069 Update pre-install.sh (#448)
* Update pre-install.sh

Sets apt-get to be non interactive on the pre-install.

* Update pre-install.sh

Sets apt-get to be non interactive on the pre-install.
2025-08-12 23:02:39 -06:00

17 lines
377 B
Bash
Executable File

#!/bin/sh
# Set non-interactive mode for apt-get
export DEBIAN_FRONTEND=noninteractive
#upgrade the packages
apt-get update && apt-get upgrade -y
#install packages
apt-get install -y git lsb-release
#get the install script
cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git
#change the working directory
cd /usr/src/fusionpbx-install.sh/ubuntu