1 |
diff -up e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-create-unix.cpu-can-delete e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-create-unix |
2 |
--- e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-create-unix.cpu-can-delete 2010-11-05 23:48:18.000000000 -0600 |
3 |
+++ e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-create-unix 2010-11-06 00:07:59.000000000 -0600 |
4 |
@@ -108,15 +108,13 @@ system( |
5 |
) == 0 or ( $x = $ldapauth ne 'enabled' ? $x : 255, warn "Failed to create (ldap) group $userName.\n" ); |
6 |
|
7 |
# Now create the user account (in ldap) |
8 |
-my @attrs; |
9 |
my $tmpattr = File::Temp->new(); |
10 |
-print $tmpattr "telephoneNumber: $phone\n" if $phone; |
11 |
-print $tmpattr "o: $company\n" if $company; |
12 |
-print $tmpattr "ou: $dept\n" if $dept; |
13 |
-print $tmpattr "l: $city\n" if $city; |
14 |
-print $tmpattr "street: $street\n" if $street; |
15 |
+print $tmpattr "telephoneNumber: $phone\n"; |
16 |
+print $tmpattr "o: $company\n"; |
17 |
+print $tmpattr "ou: $dept\n"; |
18 |
+print $tmpattr "l: $city\n"; |
19 |
+print $tmpattr "street: $street\n"; |
20 |
$tmpattr->flush(); |
21 |
-push @attrs, ('-a', "$tmpattr") if -s $tmpattr; |
22 |
system( |
23 |
"/usr/sbin/cpu", "useradd", |
24 |
"-u", $uid, |
25 |
@@ -125,7 +123,7 @@ system( |
26 |
"-f", "$first", |
27 |
"-E", "$last", |
28 |
"-e", "$userName\@$domain", |
29 |
- @attrs, |
30 |
+ "-a", "$tmpattr", |
31 |
"-d", "/home/e-smith/files/users/$userName", |
32 |
"-G", "shared", |
33 |
"-m", |
34 |
diff -up e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-modify-unix.cpu-can-delete e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-modify-unix |
35 |
--- e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-modify-unix.cpu-can-delete 2010-11-05 23:48:18.000000000 -0600 |
36 |
+++ e-smith-base-5.2.0/root/etc/e-smith/events/actions/user-modify-unix 2010-11-06 00:09:45.000000000 -0600 |
37 |
@@ -130,16 +130,14 @@ foreach my $u (@users) |
38 |
my $new_city = $u->prop('City') || ''; |
39 |
my $new_street = $u->prop('Street') || ''; |
40 |
|
41 |
- my @attrs; |
42 |
my $tmpattr = File::Temp->new(); |
43 |
- print $tmpattr "telephoneNumber: $new_phone\n" if $new_phone; |
44 |
- print $tmpattr "o: $new_company\n" if $new_company; |
45 |
- print $tmpattr "ou: $new_dept\n" if $new_dept; |
46 |
- print $tmpattr "l: $new_city\n" if $new_city; |
47 |
- print $tmpattr "street: $new_street\n" if $new_street; |
48 |
+ print $tmpattr "telephoneNumber: $new_phone\n"; |
49 |
+ print $tmpattr "o: $new_company\n"; |
50 |
+ print $tmpattr "ou: $new_dept\n"; |
51 |
+ print $tmpattr "l: $new_city\n"; |
52 |
+ print $tmpattr "street: $new_street\n"; |
53 |
$tmpattr->flush(); |
54 |
- push @attrs, ('-a', "$tmpattr") if -s $tmpattr; |
55 |
- system("/usr/sbin/cpu", "usermod", @attrs, "-e", "$userName\@$domain", "-G", "$groups", $userName) == 0 |
56 |
+ system("/usr/sbin/cpu", "usermod", "-a", "$tmpattr", "-e", "$userName\@$domain", "-G", "$groups", $userName) == 0 |
57 |
or ( $x = $ldapauth ne 'enabled' ? $x : 255, warn "Failed to modify email of (ldap) account $userName.\n" ); |
58 |
undef $tmpattr; |
59 |
} |