/[smecontribs]/rpms/smeserver-durep/contribs10/smeserver-durep-1.5.0-bz11975.patch
ViewVC logotype

Annotation of /rpms/smeserver-durep/contribs10/smeserver-durep-1.5.0-bz11975.patch

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


Revision 1.1 - (hide annotations) (download)
Wed May 18 23:58:43 2022 UTC (2 years ago) by jpp
Branch: MAIN
CVS Tags: smeserver-durep-1_5_0-17_el7_sme, smeserver-durep-1_5_0-14_el7_sme, smeserver-durep-1_5_0-13_el7_sme, smeserver-durep-1_5_0-16_el7_sme, smeserver-durep-1_5_0-15_el7_sme, smeserver-durep-1_5_0-12_el7_sme, HEAD
* Wed May 18 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.5.0-12.sme
- allow access to user with userpanel [SME: 11975]

1 jpp 1.1 diff -Nur --no-dereference smeserver-durep-1.5.0.old/root/etc/e-smith/templates/etc/httpd/admin-conf/httpd.conf/90e-smithAccess40durep smeserver-durep-1.5.0/root/etc/e-smith/templates/etc/httpd/admin-conf/httpd.conf/90e-smithAccess40durep
2     --- smeserver-durep-1.5.0.old/root/etc/e-smith/templates/etc/httpd/admin-conf/httpd.conf/90e-smithAccess40durep 1969-12-31 19:00:00.000000000 -0500
3     +++ smeserver-durep-1.5.0/root/etc/e-smith/templates/etc/httpd/admin-conf/httpd.conf/90e-smithAccess40durep 2022-05-18 19:54:52.062000000 -0400
4     @@ -0,0 +1,41 @@
5     +#------------------------------------------------------------
6     +# durep for user panel
7     +#------------------------------------------------------------
8     +{
9     + use esmith::db;
10     +
11     + my %accounts;
12     + tie %accounts, 'esmith::config', '/home/e-smith/db/accounts';
13     +
14     + my $globalpanels = db_get_prop(\%accounts, 'globalUP', 'AdminPanels');
15     + $globalpanels = '' if ( ! defined ($globalpanels) );
16     + my @globalpanels = split (/,/, $globalpanels, -1);
17     +
18     + my $key;
19     + my $value;
20     + my $file = "durep";
21     + my $require = "require user ";
22     + while (($key,$value) = each %accounts)
23     + {
24     + my ($type, %properties) = split (/\|/, $value, -1);
25     + if ($type eq 'user')
26     + {
27     + my $adminpanels = db_get_prop(\%accounts, $key, 'AdminPanels');
28     + $adminpanels = "" if (! defined $adminpanels );
29     + my @adminpanels = split (/,/, $adminpanels, -1);
30     + push @adminpanels, @globalpanels ;
31     + if (grep (/^$file$/, @adminpanels))
32     + {
33     + # Build a files require line for each panel
34     + $panelshash{$file} .= " $key"
35     + }
36     + }
37     + }
38     +
39     + $OUT .= "\n";
40     + $OUT .= " <Directory \"/etc/e-smith/web/panels/manager/html/durep\"> \n";
41     + $OUT .= " require user admin$panelshash{$file}\n";
42     + $OUT .= " </Directory>\n";
43     +
44     +}
45     +

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