diff --git a/README.md b/README.md index 7de40c4..73fe61d 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,13 @@ A quick install guide & scripts for installing FusionPBX. It is recommended to s Debian is the preferred operating system by the FreeSWITCH developers. It supports the latest video dependencies and should be used if you want to do video mixing. Download Debian at https://cdimage.debian.org/cdimage/release/current/ ```sh -wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/debian/pre-install.sh | sh; +wget -O - https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh/raw/branch/installer/debian/pre-install.sh | sh; cd /usr/src/fusionpbx-install.sh/debian && ./install.sh ``` ### Ubuntu and Raspberry OS ```sh -wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/ubuntu/pre-install.sh | sh; +wget -O - https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh/raw/branch/installer/ubuntu/pre-install.sh | sh; cd /usr/src/fusionpbx-install.sh/ubuntu && ./install.sh ``` @@ -25,7 +25,7 @@ Devuan ASCII is based on Stretch, so you will find most of the same packages ava Please note that the source installation and installation on ARM is not fully tested. ```sh -wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/devuan/pre-install.sh | sh; +wget -O - https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh/raw/branch/installer/devuan/pre-install.sh | sh; cd /usr/src/fusionpbx-install.sh/devuan && ./install.sh ``` @@ -34,7 +34,7 @@ FreeBSD is an operating system that has many great features like ZFS, HAST, CARP ```sh pkg install --yes git -cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git +cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git cd /usr/src/fusionpbx-install.sh/freebsd/ ./install.sh ``` @@ -43,7 +43,7 @@ cd /usr/src/fusionpbx-install.sh/freebsd/ CentOS operating system is a requirement for some companies. Don't expect video mixing to work. It will likely be a year or more for video mixing dependencies to be updated enough to work in CentOS. ```sh -wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/centos/pre-install.sh | sh +wget -O - https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh/raw/branch/installer/centos/pre-install.sh | sh cd /usr/src/fusionpbx-install.sh/centos && ./install.sh ``` diff --git a/centos/pre-install.sh b/centos/pre-install.sh index f3b8616..d54dc9c 100755 --- a/centos/pre-install.sh +++ b/centos/pre-install.sh @@ -4,7 +4,7 @@ yum -y install git #get the install script -cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git +cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git #change the working directory cd /usr/src/fusionpbx-install.sh/centos diff --git a/debian/pre-install.sh b/debian/pre-install.sh index d0309b2..f468384 100755 --- a/debian/pre-install.sh +++ b/debian/pre-install.sh @@ -10,7 +10,7 @@ apt-get update && apt-get upgrade -y apt-get install -y git lsb-release #get the install script -cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git +cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git #change the working directory cd /usr/src/fusionpbx-install.sh/debian diff --git a/devuan/pre-install.sh b/devuan/pre-install.sh index f2d8f58..cb3e03a 100755 --- a/devuan/pre-install.sh +++ b/devuan/pre-install.sh @@ -7,7 +7,7 @@ apt-get -q update && apt-get upgrade -y apt-get install -y git #get the install script -cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git +cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git #change the working directory cd /usr/src/fusionpbx-install.sh/devuan diff --git a/freebsd/pre-install.sh b/freebsd/pre-install.sh index 8a6c63c..932c303 100755 --- a/freebsd/pre-install.sh +++ b/freebsd/pre-install.sh @@ -4,7 +4,7 @@ pkg install --yes git #get the install script -cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git +cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git #change the working directory cd /usr/src/fusionpbx-install.sh/freebsd/ diff --git a/ubuntu/pre-install.sh b/ubuntu/pre-install.sh index b013795..208255b 100755 --- a/ubuntu/pre-install.sh +++ b/ubuntu/pre-install.sh @@ -10,7 +10,7 @@ apt-get update && apt-get upgrade -y apt-get install -y git lsb-release #get the install script -cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git +cd /usr/src && git clone https://git.nsinnovations.net/nsinnovations/fusionpbx-install.sh.git #change the working directory cd /usr/src/fusionpbx-install.sh/ubuntu