From 340bba697fb0bab62187471a2199d4220369ec8d Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 10 Nov 2010 06:51:48 +0000 Subject: [PATCH] Updated gosa.conf to read 'instancePassword' from the gosa.conf git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@20211 594d385d-05f5-0310-b6e9-bd551577e9d8 --- gosa-core/include/class_config.inc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gosa-core/include/class_config.inc b/gosa-core/include/class_config.inc index ad4d2fc7c..5df8c8ef8 100644 --- a/gosa-core/include/class_config.inc +++ b/gosa-core/include/class_config.inc @@ -65,6 +65,7 @@ class config { var $last_modified = 0; var $instanceUUID = ""; + var $instancePassword = ""; private $jsonRPChandle = NULL; @@ -188,6 +189,9 @@ class config { if(isset($attrs['INSTANCEUUID'])){ $this->instanceUUID = $attrs['INSTANCEUUID']; } + if(isset($attrs['INSTANCEPASSWORD'])){ + $this->instancePassword = $attrs['INSTANCEPASSWORD']; + } } /* Return if we're not in config section */ -- 2.30.2