Attached is my little check script that I run from cron to check for new versions. Mozilla moved to mercurial a time ago. There is also an RSS feed for the repository, if you are interested in all commits.

--
Michael
#!/bin/sh

REPODIR="$HOME/git"

echo "==== current ca-certificates version: ===="
grep 'NSS_BUILTINS_LIBRARY_VERSION ' $REPODIR/ca-certificates/mozilla/nssckbi.h
echo "==== ls -l certdata.txt ===="
ls -l $REPODIR/ca-certificates/mozilla/certdata.txt


echo "==== mozilla hg repository version: ===="
curl -s 
https://hg.mozilla.org/projects/nss/raw-file/default/lib/ckfw/builtins/nssckbi.h
 | grep 'NSS_BUILTINS_LIBRARY_VERSION '
echo "==== curl -Is certdata.txt Content Length ===="
curl -Is 
https://hg.mozilla.org/projects/nss/raw-file/default/lib/ckfw/builtins/certdata.txt
 | grep 'Content-Length:'
_______________________________________________
dev-security-policy mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-security-policy

Reply via email to