Arch Linux on aarch64 gpg keys

If you have an issue with gpg verification of packages the instructions are slightly different to recover as the signing keys are different: pacman-key –init pacman-key –populate archlinuxarm This is if you get errors like: error: mutt: signature from “Arch Linux ARM Build System <builder@archlinuxarm.org>” is unknown trust :: File /var/cache/pacman/pkg/mutt-1.10.0-1-aarch64.pkg.tar.xz is corrupted (invalid or …

Continue reading ‘Arch Linux on aarch64 gpg keys’ »

nrpe systemd socket activation

If you’re using nrpe socket activation and don’t have a template file, try this in /etc/systemd/system/nrpe@.service : [Unit] Description=nrpe socket service Requires=nrpe.socket [Service] User=nrpe ExecStart=-/usr/bin/nrpe -c /etc/nrpe/nrpe.cfg –inetd StandardInput=socket StandardOutput=inherit StandardError=journal [Install] WantedBy=multi-user.target You’ll also need /etc/systemd/system/nrpe.socket : [Unit] Description=Nagios Remote Plugin Executor Documentation=http://www.nagios.org/documentation Before=nrpe.service Conflicts=nrpe.service [Socket] ListenStream=5666 Accept=yes [Install] WantedBy=sockets.target Then systemctl start nrpe.socket