Makes sure role.ser has the correct privileges

tags/0.2.3_el5
Daniel Berteaud 11 years ago
parent e40d285212
commit 61f5ead07d
  1. 3
      root/etc/e-smith/events/actions/pydio-user-rights

@ -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";

Loading…
Cancel
Save