mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-13 21:50:33 +03:00
tomcat service: fix webapps default option (#40657)
The old package tomcat.webapps does not exist
This commit is contained in:
parent
ea80663493
commit
1daa77160e
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ in
|
||||||
|
|
||||||
webapps = mkOption {
|
webapps = mkOption {
|
||||||
type = types.listOf types.package;
|
type = types.listOf types.package;
|
||||||
default = [ tomcat.webapps ];
|
default = [ tomcat85.webapps ];
|
||||||
defaultText = "[ tomcat.webapps ]";
|
defaultText = "[ tomcat85.webapps ]";
|
||||||
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
|
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue