20881fe84b
svn path=/nixos/trunk/; revision=10757
24 lines
346 B
Nix
24 lines
346 B
Nix
args: with args;
|
|
|
|
let
|
|
|
|
cfg = config.services.tomcat;
|
|
|
|
tomcatService = import ../services/tomcat {
|
|
inherit (pkgs) stdenv jdk tomcat6 su;
|
|
inherit (cfg) baseDir user deployFrom;
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
name = "tomcat";
|
|
job = ''
|
|
description "Apache Tomcat server"
|
|
|
|
stop on shutdown
|
|
|
|
respawn ${tomcatService}/bin/control start
|
|
'';
|
|
}
|