From a34e20e29224377ad6a12ee0336d9c1509cf16ca Mon Sep 17 00:00:00 2001 From: Sander van der Burg Date: Wed, 11 Apr 2012 13:46:49 +0000 Subject: [PATCH] deployment attribute does not exists anymore, will fix this later svn path=/nixos/trunk/; revision=33747 --- modules/services/misc/disnix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/services/misc/disnix.nix b/modules/services/misc/disnix.nix index c03a6036132..645e92c39df 100644 --- a/modules/services/misc/disnix.nix +++ b/modules/services/misc/disnix.nix @@ -88,7 +88,7 @@ in services.disnix.infrastructure = optionalAttrs (cfg.publishInfrastructure.enable) ( { hostname = config.networking.hostName; - targetHost = config.deployment.targetHost; + #targetHost = config.deployment.targetHost; system = if config.nixpkgs.system == "" then builtins.currentSystem else config.nixpkgs.system; supportedTypes = (import "${pkgs.stdenv.mkDerivation { @@ -104,7 +104,7 @@ in ''; }}"); } - // optionalAttrs (cfg.useWebServiceInterface) { targetEPR = "http://${config.deployment.targetHost}:8080/DisnixWebService/services/DisnixWebService"; } + #// optionalAttrs (cfg.useWebServiceInterface) { targetEPR = "http://${config.deployment.targetHost}:8080/DisnixWebService/services/DisnixWebService"; } // optionalAttrs (config.services.httpd.enable) { documentRoot = config.services.httpd.documentRoot; } // optionalAttrs (config.services.mysql.enable) { mysqlPort = config.services.mysql.port; } // optionalAttrs (config.services.tomcat.enable) { tomcatPort = 8080; }