/[smecontribs]/rpms/smeserver-webshare/contribs10/smeserver-webshare-1.0.0-sme10-backup.patch
ViewVC logotype

Contents of /rpms/smeserver-webshare/contribs10/smeserver-webshare-1.0.0-sme10-backup.patch

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


Revision 1.3 - (show annotations) (download)
Tue Aug 2 03:58:05 2022 UTC (22 months, 1 week ago) by jpp
Branch: MAIN
Changes since 1.2: +15 -5 lines
* Mon Aug 01 2022 Jean-Philippe Pialasse <tests@pialasse.com> 1.0.0-13.sme
- update to httpd 2.4 access syntax [SME: 12066]
  thanks to Vasarhelyi Zsolt
- add to core backup [SME: 12030]
- add update event, use php-fpm [SME: 11078]
  might need its dedicated pool

1 diff -Nur --no-dereference smeserver-webshare-1.0.0.old/createlinks smeserver-webshare-1.0.0/createlinks
2 --- smeserver-webshare-1.0.0.old/createlinks 2002-05-05 22:44:40.000000000 -0400
3 +++ smeserver-webshare-1.0.0/createlinks 2022-08-01 23:57:14.361000000 -0400
4 @@ -2,20 +2,25 @@
5 # This script creates the symlinks needed by this RPM
6 # Specific support exists to create symlinks within e-smith web "panels"
7 # and for links from named "events" directories into the "actions" directory
8 -
9 -sub panel_link
10 -{
11 - my ($function, $panel) = @_;
12 -
13 - unlink "root/etc/e-smith/web/panels/$panel/cgi-bin/$function";
14 - symlink("../../../functions/$function",
15 - "root/etc/e-smith/web/panels/$panel/cgi-bin/$function")
16 - or die "Can't symlink to root/etc/e-smith/web/panels/$panel".
17 - "/cgi-bin/$function: $!";
18 -}
19 +use esmith::Build::CreateLinks qw(:all);
20
21 #--------------------------------------------------
22 # functions for user and manager panel
23 #--------------------------------------------------
24 my $panel = "manager";
25 panel_link("webshare", $panel);
26 +
27 +my $event = "smeserver-webshare-update";
28 +event_templates($event, qw(
29 +/etc/httpd/conf/httpd.conf
30 +));
31 +
32 +event_services($event, qw(
33 + php-fpm restart
34 + httpd-e-smith restart
35 +));
36 +
37 +use esmith::Build::Backup qw(:all);
38 +backup_includes("smeserver-webshare", qw(
39 +/opt/webshare
40 +));
41 diff -Nur --no-dereference smeserver-webshare-1.0.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias smeserver-webshare-1.0.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias
42 --- smeserver-webshare-1.0.0.old/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias 2022-08-01 23:41:07.957000000 -0400
43 +++ smeserver-webshare-1.0.0/root/etc/e-smith/templates/etc/httpd/conf/httpd.conf/86WebShareAlias 2022-08-01 23:43:13.776000000 -0400
44 @@ -27,8 +27,9 @@
45 $OUT .= " AuthUserFile \/home\/e-smith\/db\/webshare\/htpasswd.$key\n";
46 $OUT .= " Require valid-user\n";
47 $OUT .= " AddType application\/x-httpd-php \.php \.php3\n";
48 - $OUT .= " php_flag magic_quotes_gpc on\n";
49 - $OUT .= " php_flag track_vars on\n";
50 + $OUT .= " <FilesMatch .php>\n";
51 + $OUT .= ' SetHandler "proxy:unix:/var/run/php-fpm/php.sock|fcgi://localhost"'."\n";
52 + $OUT .= " </FilesMatch>\n";
53 $OUT .= "<\/Directory>\n";
54 $OUT .= "\n";
55 }

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