230 liens privés
install pour mac... mais marche pas....
http://download.i2p2.de/releases/1.9.0/I2P-arm64-1.9.0.dmg
Dans le script recommandé pour installer 3cx sur raspberry pi... on voit qu'on prend la version debian... en quoi c'est si compliqué à à maintenir ? .. J'ai comme l'impression que 3cx n'a pas envie de voir trop de version gratuite et veux vendre son cloud....
http://downloads-global.3cx.com/downloads/debian
sudo apt update
sudo apt install net-tools dphys-swapfile -y
sudo apt install 3cxpbx -y
Script Main
rm d10pi.zip
checkos
if [ $os_name == "raspbian" ]
then
update_repos
product_selection
if [[ $selection == "1." ]]
then
if [ $os_version == "9" ]
then
whiptail --backtitle "$backtitle" --title "Warning" --msgbox "3CX can be installed only on latest Raspberry OS." 10 70
else
install_pbx
fi
elif [[ $selection == "2." ]]
then
wget_sbc_script
$sbc_script
fi
:function install_pbx()
{
sudo apt install gnupg wget
sudo apt install net-tools dphys-swapfile
if [[ $pbx_release_type == "stable" ]]
then
sudo apt -y install 3cxpbx
elif [[ $pbx_release_type == "beta" ]]
then
sudo apt -t testing -y install 3cxpbx
fi
}
function update_repos
{
machinearch="$(dpkg --print-architecture)"
wget -O- http://downloads-global.3cx.com/downloads/3cxpbx/public.key | sudo apt-key add -
Create the 3CX APT stable and testing source repositories:
echo "deb http://downloads-global.3cx.com/downloads/debian $os_code main" | sudo tee /etc/apt/sources.list.d/3cxpbx.list
echo "deb [arch=$machinearch] http://downloads-global.3cx.com/downloads/debian $os_code-testing main" | sudo tee /etc/apt/sources.list.d/3cxpbx-testing.list
sudo apt-get update
}