scripts/gestion/tools/list_quotas.py
Michel Blockelet a1a9308602 Petite mise jour tools
Pseudo-rparation des scripts dans /usr/scripts/gestion/tools/

darcs-hash:20071211003807-ddb99-4670b17b63d914f1c06f84612aecdb3b9bb909f0.gz
2007-12-11 01:38:07 +01:00

22 lines
723 B
Python
Executable file

#! /usr/bin/env python
# -*- coding: iso-8859-15 -*-
import sys
from commands import getoutput
sys.path.append('/usr/scripts/gestion')
from ldap_crans import crans_ldap, decode
db = crans_ldap()
comptes = db.search('aid=*')['adherent'] + db.search('cid=*')['club']
txts = []
for c in comptes :
if not c.compte() :
continue
quota = getoutput('quota %s | grep "/dev/" | awk \'{ print $1" "$3" "$4 }\'' % c.compte())
if quota != '/dev/sda1 400000 600000\n/dev/sda2 102400 153600' and quota != '/dev/sda2 102400 153600\n/dev/sda1 400000 600000' :
txts.append(u'%s (%s)\n%s' % (c.Nom(), c.compte(), quota))
print '\n- - - - - - = = = = = = # # # # # # # # = = = = = = - - - - - -\n'.join(txts)