Skip to content

Commit

Permalink
tomcat service: fix webapps default option (#40657)
Browse files Browse the repository at this point in the history
The old package tomcat.webapps does not exist
  • Loading branch information
fadenb authored and xeji committed Jun 10, 2018
1 parent ea80663 commit 1daa771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nixos/modules/services/web-servers/tomcat.nix
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ in

webapps = mkOption {
type = types.listOf types.package;
default = [ tomcat.webapps ];
defaultText = "[ tomcat.webapps ]";
default = [ tomcat85.webapps ];
defaultText = "[ tomcat85.webapps ]";
description = "List containing WAR files or directories with WAR files which are web applications to be deployed on Tomcat";
};

Expand Down

0 comments on commit 1daa771

Please sign in to comment.