Issue/Question
How do I configure Debian to access the 42Crunch repo for the API Firewall?
Solution/Answer
1. Install the public signature verification key
wget -O- https://repo.prod.42crunch.com/doc/repo-signing-key.gpg | gpg --dearmor > /etc/apt/trusted.gpg.d/repo-signing-key.gpg
2. Configure Apt to fetch packages from this repository
For Debian 10
echo "deb https://repo.prod.42crunch.com/apt-repo-deb10 stable main" | sudo tee -a /etc/apt/sources.list.d/guardian-registry.list
For Debian 11
echo "deb https://repo.prod.42crunch.com/apt-repo-deb11 stable main" | sudo tee -a /etc/apt/sources.list.d/guardian-registry.list
3. Update the repository sources
sudo apt update
4. APT can now connect to the repository
sudo apt install apifirewall
Comments
0 comments
Please sign in to leave a comment.