From 4dc88ac6abad1876381d30609c88d17daff1cccf Mon Sep 17 00:00:00 2001 From: Steve Baker Date: Thu, 28 Feb 2013 10:40:04 +1300 Subject: Look for heat data files in /var/lib/heat-cfntools The /var/lib/heat-cfntools directory should be owned by the heat-cfntools package for whichever distro it is included. This avoids the problem of heat writing to directories owned by cloud-init. This is the guest-side change which corresponds to this review https://review.openstack.org/#/c/23052/ Fixes: Bug #1105806 --- bin/cfn-push-stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/cfn-push-stats b/bin/cfn-push-stats index 6fe085f..9ad250f 100755 --- a/bin/cfn-push-stats +++ b/bin/cfn-push-stats @@ -24,7 +24,7 @@ import sys # Override BOTO_CONFIG, which makes boto look only at the specified # config file, instead of the default locations -os.environ['BOTO_CONFIG'] = '/var/lib/cloud/data/cfn-boto-cfg' +os.environ['BOTO_CONFIG'] = '/var/lib/heat-cfntools/cfn-boto-cfg' from boto.ec2.cloudwatch import CloudWatchConnection -- cgit v1.2.1