forked from gfdgd_xi/gfdgd-xi-apt-mirrors
10 lines
597 B
Bash
Executable File
10 lines
597 B
Bash
Executable File
#!/bin/bash
|
|
mkdir -p /tmp/gfdgd-xi-sources
|
|
wget -P /tmp/gfdgd-xi-sources https://code.gitlink.org.cn/gfdgd_xi/gfdgd-xi-apt-mirrors/raw/branch/master/gpg.asc
|
|
wget -P /tmp/gfdgd-xi-sources https://code.gitlink.org.cn/gfdgd_xi/gfdgd-xi-apt-mirrors/raw/branch/master/sources/gitlink.list
|
|
gpg --dearmor /tmp/gfdgd-xi-sources/gpg.asc
|
|
#sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys FD6EEA1F20CD4B27
|
|
sudo cp -v /tmp/gfdgd-xi-sources/gpg.asc.gpg /etc/apt/trusted.gpg.d/gfdgdxi-list.gpg
|
|
sudo cp -v /tmp/gfdgd-xi-sources/gitlink.list /etc/apt/sources.list.d/gfdgdxi-list.list
|
|
sudo apt update
|