monit: mount points avec droits 0660 (>=jessie)

This commit is contained in:
Daniel STAN 2015-05-24 23:11:14 +02:00
parent c6d5c6e9f6
commit 178f1b5d50

View file

@ -363,7 +363,9 @@ for line in metadata.Probes["fstab_local"].splitlines():
comment("partition %s" % mntpoint)
# Permission attendue
perm = '1660'
perm = '0660'
if has('wheezy'):
perm = '1660'
# on vérifie le filesystem directement pour les volumes lvm
if fs.startswith('/dev/mapper'):