/[smeserver]/rpms/e-smith-base/sme9/e-smith-base-5.4.0-fix_group_create_with_ldap_auth.patch
ViewVC logotype

Annotation of /rpms/e-smith-base/sme9/e-smith-base-5.4.0-fix_group_create_with_ldap_auth.patch

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations) (download)
Mon Mar 24 03:05:35 2014 UTC (10 years, 3 months ago) by wellsi
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
FILE REMOVED
* Sun Mar 23 2014 Ian Wells <esmith@wellsi.com> 5.6.0-1.sme
- Roll new stream to remove obsolete images [SME: 7962]

1 vip-ire 1.1 diff -Nur e-smith-base-5.4.0/root/etc/e-smith/events/actions/group-create-unix e-smith-base-5.4.0-apache_vs_www/root/etc/e-smith/events/actions/group-create-unix
2     --- e-smith-base-5.4.0/root/etc/e-smith/events/actions/group-create-unix 2013-01-31 16:52:04.000000000 +0100
3     +++ e-smith-base-5.4.0-apache_vs_www/root/etc/e-smith/events/actions/group-create-unix 2013-06-14 12:45:51.146298871 +0200
4     @@ -167,6 +167,8 @@
5    
6     my @groupList = split (/\s+/, $groups);
7     @groupList = grep (!/^$member$/, @groupList);
8     + # Apache is an alias for www
9     + @groupList = map { $_ =~ s/^apache$/www/g; $_ } @groupList;
10    
11     push @groupList, $groupName;
12    
13     diff -Nur e-smith-base-5.4.0/root/etc/e-smith/events/actions/group-modify-unix e-smith-base-5.4.0-apache_vs_www/root/etc/e-smith/events/actions/group-modify-unix
14     --- e-smith-base-5.4.0/root/etc/e-smith/events/actions/group-modify-unix 2013-01-31 16:52:04.000000000 +0100
15     +++ e-smith-base-5.4.0-apache_vs_www/root/etc/e-smith/events/actions/group-modify-unix 2013-06-14 12:47:03.024182830 +0200
16     @@ -138,6 +138,8 @@
17    
18     my @groupList = split (/\s+/, $groups);
19     @groupList = grep (!/^$member$/, @groupList);
20     + # Apache is an alias for www
21     + @groupList = map { $_ =~ s/^apache$/www/g; $_ } @groupList;
22    
23     if ($oldMembers{$member})
24     {

admin@koozali.org
ViewVC Help
Powered by ViewVC 1.2.1 RSS 2.0 feed