scripts/munin/apt-proxy
Xavier Lagorce 7438105c0a vers l'utf-8 ...
darcs-hash:20080909193432-b8e4c-8b567852009655f931b00023ebaca090853719dd.gz
2008-09-09 21:34:32 +02:00

29 lines
764 B
Bash
Executable file

#! /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`