1 |
slords |
1.1 |
diff -Nur -x '*.orig' -x '*.rej' e-smith-samba-1.14.0/root/etc/e-smith/events/actions/update-domain-group-maps mezzanine_patched_e-smith-samba-1.14.0/root/etc/e-smith/events/actions/update-domain-group-maps |
2 |
|
|
--- e-smith-samba-1.14.0/root/etc/e-smith/events/actions/update-domain-group-maps 2007-01-30 09:58:07.000000000 -0500 |
3 |
|
|
+++ mezzanine_patched_e-smith-samba-1.14.0/root/etc/e-smith/events/actions/update-domain-group-maps 2007-01-30 09:57:46.000000000 -0500 |
4 |
|
|
@@ -12,13 +12,13 @@ |
5 |
|
|
|
6 |
|
|
my $a = esmith::AccountsDB->open_ro or die "Couldn't open accounts db\n"; |
7 |
|
|
|
8 |
|
|
-my $g = `net getlocalsid`; |
9 |
|
|
+my $g = `/usr/bin/net getlocalsid`; |
10 |
|
|
unless ($g =~ /SID.*is: (.+)/) { |
11 |
|
|
warn "Unable to determine SID. Clearning cache to see if it helps."; |
12 |
|
|
rename '/etc/samba/secrets.tdb','/etc/samba/secrets.'.time; |
13 |
|
|
rename '/var/cache/samba/gencache.tdb','/var/cache/samba/gencache.'.time; |
14 |
|
|
rename '/var/cache/samba/wins.dat','/var/cache/samba/wins.'.time; |
15 |
|
|
- $g = `net getlocalsid`; |
16 |
|
|
+ $g = `/usr/bin/net getlocalsid`; |
17 |
|
|
$g =~ /SID.*is: (.+)/ or die "Could not get current sid\n"; |
18 |
|
|
} |
19 |
|
|
my $local_sid = $1; |