<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-cloud-init.git/cloudinit/CloudConfig.py, branch rolling</title>
<subtitle> (mirror of https://github.com/vyos/vyos-cloud-init.git)
</subtitle>
<id>https://git.amelek.net/vyos/vyos-cloud-init.git/atom?h=rolling</id>
<link rel='self' href='https://git.amelek.net/vyos/vyos-cloud-init.git/atom?h=rolling'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/'/>
<updated>2010-06-18T02:22:39+00:00</updated>
<entry>
<title>make cloud-config modules configurable by cloud-config</title>
<updated>2010-06-18T02:22:39+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-06-18T02:22:39+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=22184b7ca3f78808d8025bab5981ed92f8ad99f5'/>
<id>urn:sha1:22184b7ca3f78808d8025bab5981ed92f8ad99f5</id>
<content type='text'>
The list of cloud-config modules is now kept in cloud config itself.
There is a builtin list in cloudinit, which is overrideable by 
 /etc/cloud/cloud.cfg or user data cloud-config.

This should make the modules more easily added or removed (as no code
needs to be edited now)

Basic summary of changes:
 - move CloudConfig.py -&gt; cloudinit/CloudConfig/__init__.py
 - split cloud-config modules into their own files named
   cloudinit/CloudConfig/cc_&lt;name&gt;.py
 - remove all the upstart/cloud-config-* scripts, replacing them with
   upstart/cloud-config.conf
</content>
</entry>
<entry>
<title>add vi modelines to python files</title>
<updated>2010-06-15T17:34:56+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-06-15T17:34:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=a9f600c4fb7426661c478f043791795ddbabb69a'/>
<id>urn:sha1:a9f600c4fb7426661c478f043791795ddbabb69a</id>
<content type='text'>
</content>
</entry>
<entry>
<title>rename apt lists files to match newly selected mirror (LP: #513060)</title>
<updated>2010-03-08T17:51:34+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-03-08T17:51:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=7ce3e129b3ae3caed01d2945cece75b953c452e6'/>
<id>urn:sha1:7ce3e129b3ae3caed01d2945cece75b953c452e6</id>
<content type='text'>
On first boot of an instance, cloud-config replaces
/etc/apt/sources.list with references to a local mirror.  This will also
rename the old list files in /var/lib/apt/lists .

LP: #513060</content>
</entry>
<entry>
<title>replace 'cloudconfig' entries in fstab rather than appending (LP: #524562)</title>
<updated>2010-03-04T21:47:17+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-03-04T21:47:17+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=ee291edfccd67e97f2f8f4129168279e5f0499b3'/>
<id>urn:sha1:ee291edfccd67e97f2f8f4129168279e5f0499b3</id>
<content type='text'>
This marks the comment option of fs_mntops in fstab (man fstab) with
cloudconfig for each of the mount options added by cloudconfig.  It will
search through existing lines, any entry written by cloudconfig will
be deleted.

LP: #524562</content>
</entry>
<entry>
<title>in ebs root instances, ephemeral0 will have a full path.</title>
<updated>2010-03-04T20:44:48+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-03-04T20:44:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=10d99782809706eb0edbaf5d619c4182d3a26065'/>
<id>urn:sha1:10d99782809706eb0edbaf5d619c4182d3a26065</id>
<content type='text'>
In instance store I was used to block-device-mapping:
   {'ami': 'sda1',
    'ephemeral0': 'sda2',
    'root': '/dev/sda1',
    'swap': 'sda3'},

in ebs, image registered with 
  '--block-device-mapping /dev/sda2=ephemeral0', 
metadata is showing block-device-mapping:

  {'ami': '/dev/sda1',
   'ephemeral0': '/dev/sda2',
   'root': '/dev/sda1',
   'swap': 'sda3'},

Without this change, 'ephemeral0' would not get translated and would
show up in /etc/fstab.
</content>
</entry>
<entry>
<title>cloudinit/CloudConfig.py: bug fix, 'ephemeral' in cloud-config</title>
<updated>2010-03-04T20:24:13+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-03-04T20:24:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=128f3a79a48ae34a9b94c8c6ae638b3ff2a30f28'/>
<id>urn:sha1:128f3a79a48ae34a9b94c8c6ae638b3ff2a30f28</id>
<content type='text'>
would not be converted to 'ephemeral0'
</content>
</entry>
<entry>
<title>cloudinit/CloudConfig.py whitespace changes (remove tabs)</title>
<updated>2010-03-04T20:23:25+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-03-04T20:23:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=2fed8279f7a1de1b8f54466e4fde5937ba265ebc'/>
<id>urn:sha1:2fed8279f7a1de1b8f54466e4fde5937ba265ebc</id>
<content type='text'>
</content>
</entry>
<entry>
<title>fix format of cron.d/cloudinit-updates</title>
<updated>2010-02-24T21:10:19+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-02-24T21:10:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=385802bf3396b149cfd61e20ea4c7e2c7974b307'/>
<id>urn:sha1:385802bf3396b149cfd61e20ea4c7e2c7974b307</id>
<content type='text'>
</content>
</entry>
<entry>
<title>make sure items are strings (not ints)</title>
<updated>2010-02-19T07:21:58+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-02-19T07:21:58+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=7ddf958c9317ef06f133050f51f8f08b1270674c'/>
<id>urn:sha1:7ddf958c9317ef06f133050f51f8f08b1270674c</id>
<content type='text'>
</content>
</entry>
<entry>
<title>typo in warning</title>
<updated>2010-02-19T07:08:53+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-02-19T07:08:53+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=0b16a3892e7e9c7e7126878a4a36cf1961d001ce'/>
<id>urn:sha1:0b16a3892e7e9c7e7126878a4a36cf1961d001ce</id>
<content type='text'>
</content>
</entry>
</feed>
