Fix apt warning
If you’ve been with playit for awhile you may have installed the playit agent using our old script. The method we used is no longer best practice and you’ll likely get a warning about playit whenever you run apt-get update.
You can fix this by these commands
sudo apt-key del '16AC CC32 BD41 5DCC 6F00 D548 DA6C D75E C283 9680' sudo rm /etc/apt/sources.list.d/playit-cloud.list sudo apt update curl -SsL https://playit-cloud.github.io/ppa/key.gpg | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/playit.gpg >/dev/null echo "deb [signed-by=/etc/apt/trusted.gpg.d/playit.gpg] https://playit-cloud.github.io/ppa/data ./" | sudo tee /etc/apt/sources.list.d/playit-cloud.list sudo apt update The commands explained sudo apt-key del '16AC CC32 BD41 5DCC 6F00 D548 DA6C D75E C283 9680' This comamnd will remove playit’s signing key from your general apt repository trust. If a key is in your general apt repository trust, your computer will accept any package signed by us. That’s not a good thing so it’s good idea to remove our key.
Read more