tomcat service: fix webapps default option (#40657)

The old package tomcat.webapps does not exist

(cherry picked from commit 1daa77160e92b372503c29e22bb82b1c263445ea)
release-18.03-flake
Tristan Helmich 2018-06-10 20:10:01 +02:00 committed by Uli Baum
parent 08d245eb31
commit 3939055dda
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,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";
};