[adherents.py] On rajoute le bon gid de www-data
This commit is contained in:
parent
5945308d8e
commit
eea04ce6dd
1 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@
|
|||
# Copyright (C) Frédéric Pauget
|
||||
# Licence : GPLv2
|
||||
|
||||
import smtplib, sys, commands, shutil, os, traceback
|
||||
import smtplib, sys, commands, shutil, os, traceback,grp
|
||||
sys.path.append('/usr/scripts/gestion')
|
||||
from affich_tools import cprint, anim, OK, WARNING, ERREUR
|
||||
import config
|
||||
|
@ -168,8 +168,8 @@ class home:
|
|||
### Owncloud dans le home
|
||||
if not os.path.exists(home + '/OwnCloud'):
|
||||
os.mkdir(home + '/OwnCloud')
|
||||
os.chown(home + '/OwnCloud', int(uid), "www-data")
|
||||
os.chmod(home + '/OwnCloud',770)
|
||||
os.chown(home + '/OwnCloud', int(uid), grp.getgrnam('www-data').gr_gid)
|
||||
os.chmod(home + '/OwnCloud',0770)
|
||||
except:
|
||||
print ERREUR
|
||||
if self.debug:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue