Makes sure role.ser has the correct privileges

This commit is contained in:
Daniel Berteaud 2013-11-22 12:26:17 +01:00
parent e40d285212
commit 61f5ead07d
1 changed files with 3 additions and 0 deletions

View File

@ -96,6 +96,9 @@ foreach my $user (($a->users),$a->get('admin')){
open WROLE, '+>', "/var/lib/pydio/plugins/auth.serial/$name/role.ser";
print WROLE serialize($data);
close WROLE;
# Makes sure role.ser has the correct privileges
chmod 0770, "/var/lib/pydio/plugins/auth.serial/$name/role.ser";
chown '0', '102', "/var/lib/pydio/plugins/auth.serial/$name/role.ser";
}
my $pydio = $c->get('pydio') || die "Couldn't find pydio entry in ConfigDB\n";