Repository: cloudstack Updated Branches: refs/heads/master ca860348d -> 6a1b88695
CLOUDSTACK-9039: Fix paths for logging Ubuntu Management. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/acd49d80 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/acd49d80 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/acd49d80 Branch: refs/heads/master Commit: acd49d801be0cf5675ce2b2130277b85fad213bd Parents: f948e96 Author: Boris Schrijver <bo...@pcextreme.nl> Authored: Thu Nov 5 16:30:14 2015 +0100 Committer: Boris Schrijver <bo...@pcextreme.nl> Committed: Mon Nov 9 15:50:18 2015 +0100 ---------------------------------------------------------------------- python/lib/cloudutils/serviceConfig.py | 2 +- python/lib/cloudutils/serviceConfigServer.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/acd49d80/python/lib/cloudutils/serviceConfig.py ---------------------------------------------------------------------- diff --git a/python/lib/cloudutils/serviceConfig.py b/python/lib/cloudutils/serviceConfig.py index 774195a..c9c019c 100755 --- a/python/lib/cloudutils/serviceConfig.py +++ b/python/lib/cloudutils/serviceConfig.py @@ -54,7 +54,7 @@ class serviceCfgBase(object): except: logging.debug(formatExceptionInfo()) if self.syscfg.env.mode == "Server": - raise CloudRuntimeException("Configure %s failed, Please check the /var/log/cloudstack/setupManagement.log for detail"%self.serviceName) + raise CloudRuntimeException("Configure %s failed, Please check the /var/log/cloudstack/management/setupManagement.log for detail"%self.serviceName) else: raise CloudRuntimeException("Configure %s failed, Please check the /var/log/cloudstack/agent/setup.log for detail"%self.serviceName) http://git-wip-us.apache.org/repos/asf/cloudstack/blob/acd49d80/python/lib/cloudutils/serviceConfigServer.py ---------------------------------------------------------------------- diff --git a/python/lib/cloudutils/serviceConfigServer.py b/python/lib/cloudutils/serviceConfigServer.py index b928df4..be67c6d 100644 --- a/python/lib/cloudutils/serviceConfigServer.py +++ b/python/lib/cloudutils/serviceConfigServer.py @@ -124,4 +124,4 @@ class cloudManagementConfig(serviceCfgBase): if self.syscfg.svo.enableService("cloudstack-management"): return True else: - raise CloudRuntimeException("Failed to configure %s, please see the /var/log/cloudstack/setupManagement.log for detail"%self.serviceName) + raise CloudRuntimeException("Failed to configure %s, please see the /var/log/cloudstack/management/setupManagement.log for detail"%self.serviceName)