add devaun desc to README
make update and upgrade more noisy correct path for devuan in pre-install
This commit is contained in:
parent
55b56d8c6c
commit
fd85a99ae0
|
|
@ -12,6 +12,15 @@ It supports the latest video dependencies. If you want to do video mixing use De
|
|||
wget -O - https://raw.githubusercontent.com/fusionpbx/fusionpbx-install.sh/master/debian/pre-install.sh | sh
|
||||
cd /usr/src/fusionpbx-install.sh/debian && ./install.sh
|
||||
```
|
||||
### Devuan
|
||||
If you like Debian but rather not bother with systemd, Devuan is a "drop in" replacement.
|
||||
Version 1 is bassed on Jessie. So you will find the same packages available.
|
||||
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
|
||||
cd /usr/src/fusionpbx-install.sh/devuan && ./install.sh
|
||||
```
|
||||
|
||||
### FreeBSD
|
||||
FreeBSD is an operating system that has many great features like ZFS, HAST, CARP and more.
|
||||
|
|
|
|||
|
|
@ -12,10 +12,10 @@ cd "$(dirname "$0")"
|
|||
verbose "Update installed packages"
|
||||
#apt-get upgrade && apt-get update -y --force-yes
|
||||
# --force-yes is dangerous as per the man page. Lets use -y
|
||||
apt-get -qq update && apt-get -qq --assume-yes upgrade
|
||||
apt-get -q update && apt-get -q --assume-yes upgrade
|
||||
|
||||
#Add dependencies
|
||||
apt-get install -qq -y lsb-release sudo
|
||||
apt-get install -q -y lsb-release sudo
|
||||
|
||||
#IPTables
|
||||
resources/iptables.sh
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
#!/bin/sh
|
||||
|
||||
#upgrade the packages
|
||||
apt-get update && apt-get upgrade -y
|
||||
apt-get -q update && apt-get upgrade -y
|
||||
|
||||
#install git
|
||||
apt-get install -y git
|
||||
|
|
@ -10,4 +10,4 @@ apt-get install -y git
|
|||
cd /usr/src && git clone https://github.com/fusionpbx/fusionpbx-install.sh.git
|
||||
|
||||
#change the working directory
|
||||
cd /usr/src/fusionpbx-install.sh/debian
|
||||
cd /usr/src/fusionpbx-install.sh/devuan
|
||||
|
|
|
|||
Loading…
Reference in New Issue