scripts/munin/apt-proxy
Antoine Durand-Gasselin 4a68475e34 [wiki-lenny] suppression de static/
darcs-hash:20090314092631-bd074-b01256aeaf71e935851b3ecdbd623eaae8c9e8a1.gz
2009-03-14 10:26:31 +01:00

29 lines
764 B
Bash

#! /bin/sh
# $Log: apt-proxy,v $
# Revision 1.2 2006/05/01 06:17:22 salles
# Réécriture du script directement en shell, on éviter les timeouts de munin
# comme ça.
#
#
# Must run on aptproxy user or root
#
if [ "$1" = "config" ]; then
echo "graph_title Files in apt-proxy cache"
echo "graph_args --base 1000 -l 0"
echo "graph_vlabel files"
echo "main.label main"
echo "main.info Packages in main"
echo "main.draw AREA"
echo "security.label security"
echo "security.info Packages in security"
echo "security.draw STACK"
exit 0;
fi
main="/pubftp/apt-proxy/debian/pool/main ";
security="/pubftp/apt-proxy/security/pool/updates/main ";
echo "main.value" `find $main -type f | wc -l`
echo "security.value" `find $security -type f | wc -l`