Created
July 8, 2021 03:28
-
-
Save fernandohs1500/d29d2508d4ae6ad09488cb18e7854496 to your computer and use it in GitHub Desktop.
jitsi-jibri-installer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
JBI=https://gist.githubusercontent.com/fernandohs1500/6855776f11f23da404f30cf4a6509338/raw/b7db02b26bd53aef3c72dcc1e27e37fbaeb346e9/JBI%2520-%2520Without%2520DNS%2520check | |
JJI=https://gist.githubusercontent.com/fernandohs1500/5ced2f9ecd6c5f7a2214769c554155c1/raw/69bf1c765ffd0294d10992df59124b611deaa4cc | |
JJ2=https://gist.githubusercontent.com/fernandohs1500/291e50f5fce69eee63772a135fb3f770/raw/8600c8db9cd069fb6f5081e94d8fe69ea6337e5b | |
export APT_PROXY_OPTION=$APT_PROXY_OPTION | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get $APT_PROXY_OPTION -y install wget ca-certificates \ | |
-o Dpkg::Options::="--force-confdef" \ | |
-o Dpkg::Options::="--force-confold" | |
wget -O /tmp/jitsi-base-installer $JBI/jitsi-base-installer | |
wget -O /tmp/jbi-custom-input $JJ2/jbi-custom-input | |
wget -O /tmp/jbi-custom-extra $JJI/jbi-custom-extra | |
bash /tmp/jitsi-base-installer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment