Skip to content

Commit

Permalink
Merge pull request #38 from mchf/SLE-12-SP3
Browse files Browse the repository at this point in the history
Updated list of known modules
  • Loading branch information
mchf committed Feb 22, 2019
2 parents e5f8a47 + 77a347e commit a6b0e81
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,6 @@ Makefile.am.common
.dep
*.ybc
*.ami
/testsuite/raw.tmp.*
/doc
.yardoc
7 changes: 7 additions & 0 deletions package/yast2-http-server.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Fri Feb 22 07:51:52 UTC 2019 - mfilka@suse.com

- bnc#1119455
- updated list of known modules to guarantee correct load order
- 3.2.3

-------------------------------------------------------------------
Wed Mar 15 14:27:23 UTC 2017 - ancor@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-http-server.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-http-server
Version: 3.2.2
Version: 3.2.3
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
22 changes: 21 additions & 1 deletion src/modules/YaPI/HTTPDModules.pm
Original file line number Diff line number Diff line change
Expand Up @@ -740,9 +740,29 @@ textdomain "http-server";
'authz_svn' => {
summary => __("Provides support for subversion"),
packages => ["subversion-server"],
requires => "dav_svn",
requires => "dav_svn",
default => 0,
position => 550
},
'session' => {
summary => __("Session support"),
packages => [],
default => 0,
position => 600
},
'session_cookie' => {
summary => __("Cookie based session support"),
packages => [],
requires => "session",
default => 0,
position => 610
},
'session_dbd' => {
summary => __("DBD/SQL based session support"),
packages => [],
requires => "session",
default => 0,
position => 620
}
);
%selection = (
Expand Down

0 comments on commit a6b0e81

Please sign in to comment.