8f19ddc364
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
27 lines
671 B
Plaintext
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>
|