14 lines
509 B
Python
14 lines
509 B
Python
|
|
home
|
|
home = args[0]
|
|
os.mkdir(home, 0755)
|
|
os.mkdir(home + '/Mail', 0700)
|
|
os.lchown(home, int(args[1]) ,config.gid)
|
|
os.system('/usr/sbin/edquota -p pauget %s' % arg[3] )
|
|
|
|
ML-ENS
|
|
if os.system("echo '%s' | /usr/sbin/add_members -r - com-ens" % mail) :
|
|
# Il y a eu une erreur
|
|
arg = u'--title "Inscription Mailing liste de communiquation ENS" '
|
|
arg+= u'--msgbox "Une erreur s\'est produite lors de l\'ajout à la mailing liste.\n\n\n" 0 0'
|
|
dialog(arg)
|