heat-templates/jeos/U12.10-amd64-cfntools.tdl
Steven Dake 8f19ddc364 Resolve CVE-2013-2069
Fix problem where root escalation is possible in a VM.

For more details:
http://lists.fedoraproject.org/pipermail/announce/2013-May/003157.html

Change-Id: I95013d8155d0338c4161a6cb87f02974973fcf80
2013-05-24 01:43:32 -07:00

27 lines
671 B
Plaintext

<template>
<name>U12-10-x86_64-cfntools</name>
<os>
<name>Ubuntu</name>
<version>12.10</version>
<arch>x86_64</arch>
<install type='iso'>
<iso>file:/var/lib/libvirt/images/ubuntu-12.10-server-amd64.iso</iso>
</install>
</os>
<description>Ubuntu 12.10</description>
<commands>
<command name='lockroot'>
passwd -l root
</command>
<command name='commands'>
apt-get -y update
apt-get -y upgrade
apt-get -y install python-argparse cloud-init python-psutil python-pip
apt-get -y remove python-boto
pip install 'boto==2.5.2' heat-cfntools
cfn-create-aws-symlinks --source /usr/local/bin
</command>
</commands>
</template>