Skip to content

Commit

Permalink
Updated known modules with session related modules. bnc#1119455
Browse files Browse the repository at this point in the history
  • Loading branch information
mchf committed Feb 1, 2019
1 parent e5f8a47 commit a4abd0a
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion src/modules/YaPI/HTTPDModules.pm
Original file line number Diff line number Diff line change
Expand Up @@ -740,10 +740,31 @@ 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 = (
TestSel => {
Expand Down

0 comments on commit a4abd0a

Please sign in to comment.