29 lines
760 B
Bash
Executable file
29 lines
760 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`
|