You are not logged in.
In response to the repeated irc question of how many packages are signed, I made a script to answer it.
This uses your pacman.conf to show the percentage of signed packages for each repo you have enabled, or -1% if the repo is empty. It depends on pyalpm.
Get it here: https://github.com/JohnFrazier/sigstats
$ ./sigstats.py
core 100%
community-testing 100%
extra 74%
testing 100%
multilib 71%
community 51%
multilib-testing -1%John_f
Last edited by wideeye (2012-01-25 17:54:14)
Offline
https://bbs.archlinux.org/viewtopic.php … 5#p1045255 :-)
for i in core extra community testing community-testing; do echo $i; ./signrepo $i; doneOffline