2008-11-18 10:00:15 -08:00
|
|
|
# Disnix server
|
2009-10-12 09:36:19 -07:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
2008-07-06 11:34:19 -07:00
|
|
|
|
|
|
|
let
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
cfg = config.services.disnix;
|
2010-11-01 10:33:54 -07:00
|
|
|
|
|
|
|
disnix_activation_scripts = pkgs.disnix_activation_scripts.override (origArgs: {
|
|
|
|
enableApacheWebApplication = config.services.httpd.enable;
|
|
|
|
enableAxis2WebService = config.services.tomcat.axis2.enable;
|
|
|
|
enableEjabberdDump = config.services.ejabberd.enable;
|
|
|
|
enableMySQLDatabase = config.services.mysql.enable;
|
|
|
|
enableTomcatWebApplication = config.services.tomcat.enable;
|
|
|
|
});
|
2009-10-12 09:36:19 -07:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
###### interface
|
2009-09-02 03:27:44 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
options = {
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
services.disnix = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable Disnix";
|
2010-11-01 10:33:54 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
useWebServiceInterface = mkOption {
|
|
|
|
default = false;
|
|
|
|
description = "Whether to enable the DisnixWebService interface running on Apache Tomcat";
|
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
###### implementation
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
config = mkIf cfg.enable {
|
2008-07-06 11:34:19 -07:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
environment.systemPackages = [ pkgs.disnix ];
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2009-10-12 09:36:19 -07:00
|
|
|
services.dbus.enable = true;
|
|
|
|
services.dbus.packages = [ pkgs.disnix ];
|
2008-11-18 10:00:15 -08:00
|
|
|
|
2010-11-01 10:33:54 -07:00
|
|
|
services.tomcat.enable = cfg.useWebServiceInterface;
|
|
|
|
services.tomcat.javaOpts = "${optionalString cfg.useWebServiceInterface "-Djava.library.path=${pkgs.libmatthew_java}/lib/jni"} ";
|
|
|
|
services.tomcat.sharedLibs = []
|
|
|
|
++ optional cfg.useWebServiceInterface "${pkgs.DisnixWebService}/share/java/DisnixConnection.jar"
|
|
|
|
++ optional cfg.useWebServiceInterface "${pkgs.dbus_java}/share/java/dbus.jar";
|
|
|
|
services.tomcat.webapps = [] ++ optional cfg.useWebServiceInterface pkgs.DisnixWebService;
|
|
|
|
|
2010-04-19 06:26:21 -07:00
|
|
|
users.extraGroups = singleton
|
|
|
|
{ name = "disnix";
|
|
|
|
gid = config.ids.gids.disnix;
|
|
|
|
};
|
|
|
|
|
2009-10-12 11:09:34 -07:00
|
|
|
jobs.disnix =
|
2009-10-12 09:36:19 -07:00
|
|
|
{ description = "Disnix server";
|
|
|
|
|
2009-11-06 14:19:17 -08:00
|
|
|
startOn = "started dbus";
|
2009-10-12 09:36:19 -07:00
|
|
|
|
|
|
|
script =
|
2010-11-01 10:33:54 -07:00
|
|
|
''
|
|
|
|
${pkgs.disnix}/bin/disnix-service --activation-modules-dir=${disnix_activation_scripts}/libexec/disnix/activation-scripts
|
2009-10-12 09:36:19 -07:00
|
|
|
'';
|
|
|
|
};
|
2008-11-22 17:28:58 -08:00
|
|
|
|
2008-11-18 10:00:15 -08:00
|
|
|
};
|
2009-10-12 09:36:19 -07:00
|
|
|
|
2008-07-06 11:34:19 -07:00
|
|
|
}
|