summary refs log tree commit diff
path: root/modules/services/web-servers/jboss/default.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2011-04-27 13:33:06 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2011-04-27 13:33:06 +0000
commite5966f96b7a7a20ee4f8d1de67b3b1b3a2026509 (patch)
tree32a4300c421adc3846426f9d650b21489cd91c89 /modules/services/web-servers/jboss/default.nix
parent650d14be8dfda0064b43f4b643759de2ebb64585 (diff)
downloadnixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.tar
nixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.tar.gz
nixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.tar.bz2
nixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.tar.lz
nixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.tar.xz
nixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.tar.zst
nixpkgs-e5966f96b7a7a20ee4f8d1de67b3b1b3a2026509.zip
* Fix the jboss module.
svn path=/nixos/trunk/; revision=26992
Diffstat (limited to 'modules/services/web-servers/jboss/default.nix')
-rw-r--r--modules/services/web-servers/jboss/default.nix83
1 files changed, 83 insertions, 0 deletions
diff --git a/modules/services/web-servers/jboss/default.nix b/modules/services/web-servers/jboss/default.nix
new file mode 100644
index 00000000000..a1bdce50eee
--- /dev/null
+++ b/modules/services/web-servers/jboss/default.nix
@@ -0,0 +1,83 @@
+{ config, pkgs, ... }:
+
+with pkgs.lib;
+
+let
+
+  cfg = config.services.jboss;
+  
+  jbossService = pkgs.stdenv.mkDerivation {
+    name = "jboss-server";
+    builder = ./builder.sh;
+    inherit (pkgs) jboss su;
+    inherit (cfg) tempDir logDir libUrl deployDir serverDir user useJK;
+  };
+
+in
+
+{
+
+  ###### interface
+
+  options = {
+  
+    services.jboss = {
+    
+      enable = mkOption {
+        default = false;
+        description = "Whether to enable jboss";
+      };
+
+      tempDir = mkOption {
+        default = "/tmp";
+        description = "Location where JBoss stores its temp files";
+      };
+
+      logDir = mkOption {
+        default = "/var/log/jboss";
+        description = "Location of the logfile directory of JBoss";
+      };
+
+      serverDir = mkOption {
+        description = "Location of the server instance files";
+        default = "/var/jboss/server";
+      };
+
+      deployDir = mkOption {
+        description = "Location of the deployment files";
+        default = "/nix/var/nix/profiles/default/server/default/deploy/";
+      };
+
+      libUrl = mkOption {
+        default = "file:///nix/var/nix/profiles/default/server/default/lib";
+        description = "Location where the shared library JARs are stored";
+      };
+
+      user = mkOption {
+        default = "nobody";
+        description = "User account under which jboss runs.";
+      };
+
+      useJK = mkOption {
+        default = false;
+        description = "Whether to use to connector to the Apache HTTP server";
+      };
+      
+    };
+
+  };
+
+
+  ###### implementation
+
+  config = mkIf config.services.jboss.enable {
+
+    jobs.jboss =
+      { description = "JBoss server";
+
+        exec = "${jbossService}/bin/control start";
+      };
+
+  };
+  
+}