added Tim's patch
This commit is contained in:
parent
2702a84ddd
commit
9727fdb061
|
@ -10,6 +10,8 @@
|
||||||
-> fixed language setting in default configuration profile
|
-> fixed language setting in default configuration profile
|
||||||
-> fixed PHP5 warnings (getdate() and mktime())
|
-> fixed PHP5 warnings (getdate() and mktime())
|
||||||
-> error messages in Samba domain module (1437425)
|
-> error messages in Samba domain module (1437425)
|
||||||
|
-> fixed expired passwords with shadowAccount module
|
||||||
|
-> added lamdaemon.pl compatibility and security patches by Tim Rice
|
||||||
|
|
||||||
|
|
||||||
08.02.2006 1.0.rc2
|
08.02.2006 1.0.rc2
|
||||||
|
|
|
@ -22,6 +22,27 @@
|
||||||
#
|
#
|
||||||
# LDAP Account Manager daemon to create and delete homedirecotries and quotas
|
# LDAP Account Manager daemon to create and delete homedirecotries and quotas
|
||||||
|
|
||||||
|
# set a known path
|
||||||
|
my $path = "";
|
||||||
|
if (-d "/sbin") {
|
||||||
|
if ($path eq "") { $path = "/sbin"; }
|
||||||
|
else { $path = "$path:/sbin"; }
|
||||||
|
}
|
||||||
|
if (-d "/usr/sbin") {
|
||||||
|
if ($path eq "") { $path = "/usr/sbin"; }
|
||||||
|
else { $path = "$path:/usr/sbin"; }
|
||||||
|
}
|
||||||
|
if (-l "/bin") {
|
||||||
|
if ($path eq "") { $path = "/usr/bin"; }
|
||||||
|
else { $path = "$path:/usr/bin"; }
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
if ($path eq "") { $path = "/bin:/usr/bin"; }
|
||||||
|
else { $path = "$path:/bin:/usr/bin"; }
|
||||||
|
}
|
||||||
|
if (-d "/opt/sbin") { $path = "$path:/opt/sbin"; }
|
||||||
|
if (-d "/opt/bin") { $path = "$path:/opt/bin"; }
|
||||||
|
$ENV{"PATH"} = $path;
|
||||||
|
|
||||||
#use strict; # Use strict for security reasons
|
#use strict; # Use strict for security reasons
|
||||||
|
|
||||||
|
@ -111,12 +132,16 @@ if ($< == 0 ) { # we are root
|
||||||
$vals[2] eq 'rem' && do {
|
$vals[2] eq 'rem' && do {
|
||||||
($<, $>) = ($>, $<); # Get root previliges
|
($<, $>) = ($>, $<); # Get root previliges
|
||||||
if (-d $user[7] && $user[7] ne '/') {
|
if (-d $user[7] && $user[7] ne '/') {
|
||||||
# Fixme, only delete files owned by user.
|
if ((stat($user[7]))[4] eq $user[2]) {
|
||||||
system 'rm', '-R', $user[7]; # Delete Homedirectory
|
system 'rm', '-R', $user[7]; # Delete Homedirectory
|
||||||
if (-e '/usr/sbin/userdel.local') {
|
if (-e '/usr/sbin/userdel.local') {
|
||||||
system '/usr/sbin/userdel.local', $user[0];
|
system '/usr/sbin/userdel.local', $user[0];
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
$return = "ERROR,Lamdaemon,Homedirectory not owned by $user[2].:$return";
|
||||||
|
}
|
||||||
|
}
|
||||||
else {
|
else {
|
||||||
$return = "ERROR,Lamdaemon,Homedirectory doesn't exists.:$return";
|
$return = "ERROR,Lamdaemon,Homedirectory doesn't exists.:$return";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue