From 95d583fd79a5e6e65d8effcc0589f7361a0447c1 Mon Sep 17 00:00:00 2001 From: Steven Dake Date: Mon, 16 Apr 2012 16:29:35 -0700 Subject: [PATCH] Fix bug in path on cfn-init Fixes issue #75 Signed-off-by: Steven Dake --- heat/cfntools/cfn-init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heat/cfntools/cfn-init b/heat/cfntools/cfn-init index b485ff793e..4ea48f7ff2 100755 --- a/heat/cfntools/cfn-init +++ b/heat/cfntools/cfn-init @@ -567,7 +567,7 @@ def get_metadata(fname): ## Main -metadata_file = "/var/lib/cloud/data-cfn-init-data" +metadata_file = "/var/lib/cloud/data/cfn-init-data" description = " " parser = argparse.ArgumentParser(description=description)