Skip to content
Snippets Groups Projects
Commit 6b169777 authored by Bob Mottram's avatar Bob Mottram
Browse files

Check for duplicates

parent cad0f433
No related branches found
No related tags found
No related merge requests found
......@@ -225,7 +225,9 @@ function install_jitsi {
# add jitsi repo
jitsi_deb_repo=unstable
apt-get -yq install wget debconf-utils
echo "deb http://download.jitsi.org/nightly/deb ${jitsi_deb_repo}/" >> /etc/apt/sources.list
if ! grep "jitsi" /etc/apt/sources.list; then
echo "deb http://download.jitsi.org/nightly/deb ${jitsi_deb_repo}/" >> /etc/apt/sources.list
fi
wget -qO - https://download.jitsi.org/nightly/deb/${jitsi_deb_repo}/archive.key | apt-key add -
apt-get update
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment