]> review.fuel-infra Code Review - openstack-build/heat-build.git/commitdiff
Add F16 cftools tdl
authorSteven Dake <sdake@redhat.com>
Thu, 5 Apr 2012 00:39:24 +0000 (17:39 -0700)
committerSteven Dake <sdake@redhat.com>
Thu, 5 Apr 2012 00:39:24 +0000 (17:39 -0700)
Signed-off-by: Steven Dake <sdake@redhat.com>
heat/jeos/F16-x86_64-cftools-jeos.tdl [new file with mode: 0644]

diff --git a/heat/jeos/F16-x86_64-cftools-jeos.tdl b/heat/jeos/F16-x86_64-cftools-jeos.tdl
new file mode 100644 (file)
index 0000000..1c62a69
--- /dev/null
@@ -0,0 +1,67 @@
+<template>
+  <name>F16-x86_64-cftools-jeos</name>
+  <os>
+    <name>Fedora</name>
+    <version>16</version>
+    <arch>x86_64</arch>
+    <install type='iso'>
+      <iso>file:/var/lib/libvirt/images/Fedora-16-x86_64-DVD.iso</iso>
+    </install>
+    <rootpw>password</rootpw>
+  </os>
+  <description>Fedora 16</description>
+  <commands>
+    <command name='commands'>
+rm -f /etc/yum.repos.d/fedora-updates*;yum -y install cloud-init;cat >> /etc/rc.d/rc.local &lt;&lt; EOF;chmod +x /etc/rc.d/rc.local
+#!/bin/bash
+setenforce 0
+while true; do
+gdbus introspect --system --dest org.freedesktop.NetworkManager --object-path /org/freedesktop/NetworkManager/Devices/0 | grep "State = 100"
+if [ \$? -eq 0 ]
+then
+break
+fi
+sleep 1
+done
+
+if [ ! -d /root/.ssh ]; then
+  mkdir -p /root/.ssh
+  chmod 700 /root/.ssh
+fi
+# Fetch public key using HTTP
+ATTEMPTS=10
+while [ ! -f /root/.ssh/authorized_keys ]; do
+    curl -f http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key > /tmp/aws-key 2>/dev/null
+    if [ \$? -eq 0 ]; then
+        cat /tmp/aws-key >> /root/.ssh/authorized_keys
+        chmod 0600 /root/.ssh/authorized_keys
+        restorecon /root/.ssh/authorized_keys
+        rm -f /tmp/aws-key
+        echo "Successfully retrieved AWS public key from instance metadata"
+    else
+        FAILED=\$((\$FAILED + 1))
+        if [ \$FAILED -ge \$ATTEMPTS ]; then
+            echo "Failed to retrieve AWS public key after \$FAILED attempts, quitting"
+            break
+        fi
+        echo "Could not retrieve AWS public key (attempt #\$FAILED/\$ATTEMPTS), retrying in 5 seconds..."
+        sleep 5
+    fi
+done
+while [ ! -f /var/lib/cloud/instance/user-data.txt ]; do
+        sleep 1
+done
+base64 -d /var/lib/cloud/instance/user-data.txt > /tmp/startup
+chmod +x /tmp/startup
+chmod +x /opt/aws/bin/cfn-*
+/tmp/startup
+EOF
+    </command>
+  </commands>
+  <files>
+    <file name='/opt/aws/bin/cfn-init'  type='base64'></file>
+    <file name='/opt/aws/bin/cfn-hup'  type='base64'></file>
+    <file name='/opt/aws/bin/cfn-signal'  type='base64'></file>
+  </files>
+</template>