mirror of
https://github.com/angristan/wireguard-install.git
synced 2025-04-05 03:43:30 +03:00
Remove repos from Debian and CentOS in uninstallation steps
Removed wireguard-arch as its not being installed in Arch Linux.
This commit is contained in:
parent
b0b3889a45
commit
e4183e2960
1 changed files with 4 additions and 1 deletions
|
@ -104,6 +104,8 @@ if [[ $OS == 'ubuntu' ]]; then
|
|||
apt-get autoremove -y
|
||||
elif [[ $OS == 'debian' ]]; then
|
||||
apt-get remove --purge -y wireguard qrencode
|
||||
rm -f "/etc/apt/sources.list.d/unstable.list"
|
||||
rm -f "/etc/apt/preferences.d/limit-unstable"
|
||||
apt-get autoremove -y
|
||||
elif [[ $OS == 'fedora' ]]; then
|
||||
dnf remove -y wireguard-tools qrencode
|
||||
|
@ -114,9 +116,10 @@ elif [[ $OS == 'fedora' ]]; then
|
|||
dnf autoremove -y
|
||||
elif [[ $OS == 'centos' ]]; then
|
||||
yum -y remove wireguard-dkms wireguard-tools qrencode
|
||||
rm -f "/etc/yum.repos.d/wireguard.repo"
|
||||
yum -y autoremove
|
||||
elif [[ $OS == 'arch' ]]; then
|
||||
pacman -Rs --noconfirm wireguard-tools wireguard-arch qrencode
|
||||
pacman -Rs --noconfirm wireguard-tools qrencode
|
||||
fi
|
||||
|
||||
# Delete /etc/wireguard
|
||||
|
|
Loading…
Add table
Reference in a new issue