diff --git a/MANIFEST.in b/MANIFEST.in index f5d5773cb5..7714dddea2 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -7,8 +7,8 @@ include babel.cfg graft templates include heat/jeos/F16-x86_64-gold-jeos.tdl include heat/jeos/F17-x86_64-gold-jeos.tdl -include heat/jeos/F16-x86_64-cftools-jeos.tdl -include heat/jeos/F17-x86_64-cftools-jeos.tdl +include heat/jeos/F16-x86_64-cfntools-jeos.tdl +include heat/jeos/F17-x86_64-cfntools-jeos.tdl include heat/cfntools/cfn-init include heat/cfntools/cfn-hup include heat/cfntools/cfn-signal diff --git a/bin/heat b/bin/heat index 83b4e00872..70e9a6733d 100755 --- a/bin/heat +++ b/bin/heat @@ -218,10 +218,10 @@ def jeos_create(options, arguments): arguments that are popped from the arguments parameter. arg0 -> Distribution such as 'F16', 'F17', 'U10', 'D6' arg1 -> Architecture such as 'i386' 'i686' or 'x86_64' - arg2 -> Image type such as 'gold' or 'cftools' + arg2 -> Image type such as 'gold' or 'cfntools' gold is a basic gold JEOS - cftools contains the cfntools helper scripts + cfntools contains the cfntools helper scripts The command must be run as root in order for libvirt to have permissions to create virtual machines and read the raw DVDs. @@ -238,7 +238,7 @@ def jeos_create(options, arguments): print ' heat jeos_create ' print ' instance type can be:' print ' gold builds a base image where userdata is used to initialize the instance' - print ' cftools builds a base image where AWS CloudFormations tools are present' + print ' cfntools builds a base image where AWS CloudFormations tools are present' sys.exit(1) distro = arguments.pop(0) @@ -250,9 +250,9 @@ def jeos_create(options, arguments): print 'try: x86_64 or i686' sys.exit(1) - if not instance_type in ('gold', 'cftools'): + if not instance_type in ('gold', 'cfntools'): print 'A JEOS instance type of %s not supported' % instance_type - print 'try: gold or cftools' + print 'try: gold or cfntools' sys.exit(1) iso = None diff --git a/heat/jeos/F16-x86_64-cftools-jeos.tdl b/heat/jeos/F16-x86_64-cfntools-jeos.tdl similarity index 98% rename from heat/jeos/F16-x86_64-cftools-jeos.tdl rename to heat/jeos/F16-x86_64-cfntools-jeos.tdl index 1c62a69e7d..39f35af2ff 100644 --- a/heat/jeos/F16-x86_64-cftools-jeos.tdl +++ b/heat/jeos/F16-x86_64-cfntools-jeos.tdl @@ -1,5 +1,5 @@