<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-cloud-init.git/ec2init/util.py, branch 20.1</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=20.1</id>
<link rel='self' href='https://git.amelek.net/vyos/vyos-cloud-init.git/atom?h=20.1'/>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/'/>
<updated>2010-02-03T23:09:48+00:00</updated>
<entry>
<title>globally remove ec2init and rename to cloudinit</title>
<updated>2010-02-03T23:09:48+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-02-03T23:09:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=aed1c1e9fda1e78d19305e90f554d0dcb5388cd7'/>
<id>urn:sha1:aed1c1e9fda1e78d19305e90f554d0dcb5388cd7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>move etc/ec2-init/templates to etc/cloud/templates</title>
<updated>2010-01-29T18:08:12+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-29T18:08:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=0f2d829a2709d049f5606cf89e5c70559024853e'/>
<id>urn:sha1:0f2d829a2709d049f5606cf89e5c70559024853e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>tighten permissions on cloud-config and user-data to protect it</title>
<updated>2010-01-29T18:05:06+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-29T18:05:06+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=fddec92b8ea39515ff19be1117fcacb32944ab72'/>
<id>urn:sha1:fddec92b8ea39515ff19be1117fcacb32944ab72</id>
<content type='text'>
</content>
</entry>
<entry>
<title>move writing sources.list to CloudConfig. add 'apt_preserve_sources_list'</title>
<updated>2010-01-26T21:40:10+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-26T21:40:10+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=63ba097865e1d038d82a7fa1d6efd282784677f5'/>
<id>urn:sha1:63ba097865e1d038d82a7fa1d6efd282784677f5</id>
<content type='text'>
Move the writing of sources.list to CloudConfig.  This way we have
access to the cloud-config user data.  Then, allow the user
to specify the archive mirror using 'apt_mirror' key. 

Now, if specified in cloud-config, that is used, otherwise, we 
get one from the DataSource.

One other change here is adding 'apt_preserve_sources_list'.  If set to
true, then overwriting of the sources.list with the selected mirror
will not be done.
</content>
</entry>
<entry>
<title>add cloud config support for apt_sources</title>
<updated>2010-01-26T18:19:49+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-26T18:19:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=262479dfe04e8342843df8851eaef61caaa95f5a'/>
<id>urn:sha1:262479dfe04e8342843df8851eaef61caaa95f5a</id>
<content type='text'>
This includes support for
- signing key import via 'keyid' and 'keyserver' or 'key'
- ppa:* support (provided by 'add-apt-repository')
  now there is a dependency on python-software-properties
</content>
</entry>
<entry>
<title>Add support for ssh keys in cloud-config.  move write_file to util.</title>
<updated>2010-01-22T19:43:36+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-22T19:43:36+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=8c66ea2f37d34c26ee2f6013aa98605c213d0e02'/>
<id>urn:sha1:8c66ea2f37d34c26ee2f6013aa98605c213d0e02</id>
<content type='text'>
----
#cloud-config
apt_update: true
ssh_keys:
  rsa_private: |
    -----BEGIN RSA PRIVATE KEY-----
    MIIBxwIBAAJhAKD0YSHy73nUgysO13XsJmd4fHiFyQ+00R7VVu2iV9Qcon2LZS/x
    ...
    REPPOyrAspdeOAV+6VKRavstea7+2DZmSUgE
    -----END RSA PRIVATE KEY-----

  rsa_public: ssh-rsa AAAAB3NzaC1yc2E...18QJvWPocKJtlsDNi3 smoser@host

  dsa_private: |
    -----BEGIN DSA PRIVATE KEY-----
    MIIBuwIBAAKBgQDP2HLu7pTExL89USyM0264RCyWX/CMLmukxX0Jdbm29ax8FBJT
    ...
    8KucvUYbOEI+yv+5LW9u3z/BAoGBAI0q6JP+JvJmwZFaeCMMVxXUbqiSko/P1lsa
    -----END DSA PRIVATE KEY-----

  dsa_public: ssh-dss AAAAB3NzaC1kc3M...ybngIy66PMEoQ= smoser@host
----
</content>
</entry>
<entry>
<title>fix reading of cloudconfig</title>
<updated>2010-01-22T16:21:16+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-22T16:21:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=1108a511010c4497e94bca78769bef30e3c01dff'/>
<id>urn:sha1:1108a511010c4497e94bca78769bef30e3c01dff</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add util library</title>
<updated>2010-01-20T21:38:49+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-01-20T21:38:49+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=8ac737948622d97f43877dbc1c78707eb82fb273'/>
<id>urn:sha1:8ac737948622d97f43877dbc1c78707eb82fb273</id>
<content type='text'>
</content>
</entry>
</feed>
