diff --git a/README.md b/README.md index 708a9e9..710e0e9 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/devuan/install.sh b/devuan/install.sh index 4658e85..50ee935 100755 --- a/devuan/install.sh +++ b/devuan/install.sh @@ -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 diff --git a/devuan/pre-install.sh b/devuan/pre-install.sh index cb4da46..f2d8f58 100755 --- a/devuan/pre-install.sh +++ b/devuan/pre-install.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