fixed sources.kist and key eror for jitsi.
This commit is contained in:
parent
4aa5f6670e
commit
abdac7fdd8
16
020_jitsi.sh
16
020_jitsi.sh
|
|
@ -1,23 +1,27 @@
|
||||||
cat > /etc/apt/sources.list-available/jitsi-unstable.list << 'EOF'
|
cat > /etc/apt/sources.list-available/jitsi-stable.list << 'EOF'
|
||||||
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
||||||
deb http://download.jitsi.org/deb stable/
|
deb http://download.jitsi.org stable/
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat > /etc/apt/sources.list-available/jitsi-unstable.list << 'EOF'
|
cat > /etc/apt/sources.list-available/jitsi-testing.list << 'EOF'
|
||||||
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
||||||
deb http://download.jitsi.org/deb testing/
|
deb http://download.jitsi.org testing/
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Nightly
|
# Nightly
|
||||||
cat > /etc/apt/sources.list-available/jitsi-unstable.list << 'EOF'
|
cat > /etc/apt/sources.list-available/jitsi-unstable.list << 'EOF'
|
||||||
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
# wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
||||||
deb http://download.jitsi.org/deb unstable/
|
deb http://download.jitsi.org unstable/
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
ln -s /etc/apt/sources.list-available/jitsi-unstable.list /etc/apt/sources.list.d/jitsi-unstable.list
|
ln -sf /etc/apt/sources.list-available/jitsi-unstable.list /etc/apt/sources.list.d/jitsi-unstable.list
|
||||||
|
|
||||||
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
wget -qO - https://download.jitsi.org/jitsi-key.gpg.key | apt-key add -
|
||||||
|
|
||||||
|
# jitsi unstable GPG error: NO_PUBKEY C697D823EB0AB654
|
||||||
|
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys C697D823EB0AB654
|
||||||
|
|
||||||
|
|
||||||
# Update your package list:
|
# Update your package list:
|
||||||
|
|
||||||
apt-get -y update
|
apt-get -y update
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue