Skip to content

Commit

Permalink
Update azlux.fr install repo instructions
Browse files Browse the repository at this point in the history
- Switch link to https from http
- Switch to store key in /usr/share/keyrings/azlux.gpg
- dearmor the key before saving
- Switch to use an explicit path to the save dearmored gpg key
  • Loading branch information
netravnen committed Sep 18, 2023
1 parent 6c581dc commit d2979ea
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,11 @@ Table of Contents
* Fedora ([COPR](https://copr.fedorainfracloud.org/coprs/atim/gping/)): `sudo dnf copr enable atim/gping -y && sudo dnf install gping`
* Cargo (**This requires `rustc` version 1.44.0 or greater**): `cargo install gping`
* Arch Linux: `pacman -S gping`
* Ubuntu/Debian ([Azlux's repo](http://packages.azlux.fr/)):
* Ubuntu/Debian ([Azlux's repo](https://packages.azlux.fr/)):
```bash
echo "deb http://packages.azlux.fr/debian/ buster main" | sudo tee /etc/apt/sources.list.d/azlux.list
wget -qO - https://azlux.fr/repo.gpg.key | sudo apt-key add -
echo 'deb [signed-by=/usr/share/keyrings/azlux.gpg] https://packages.azlux.fr/debian/ bookworm main' | sudo tee /etc/apt/sources.list.d/azlux.list
sudo apt install gpg
curl -s https://azlux.fr/repo.gpg.key | gpg --dearmor | sudo tee /usr/share/keyrings/azlux.gpg > /dev/null
sudo apt update
sudo apt install gping
```
Expand Down

0 comments on commit d2979ea

Please sign in to comment.