<feed xmlns='http://www.w3.org/2005/Atom'>
<title>vyos-cloud-init.git/cloud-init-run-module.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>2011-12-20T16:39:46+00:00</updated>
<entry>
<title>replace cloud-init-run-module with cloud-init-per</title>
<updated>2011-12-20T16:39:46+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2011-12-20T16:39:46+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=27e88fe213b0a3505ca565cae63d7d7124b7f969'/>
<id>urn:sha1:27e88fe213b0a3505ca565cae63d7d7124b7f969</id>
<content type='text'>
This replaces cloud-init-run-module (which was probably rarely or never used)
with 'cloud-init-per' which does basically the same thing, but doesn't
support "modules".
</content>
</entry>
<entry>
<title>fix missing import for use of close_stdin</title>
<updated>2011-12-20T04:38:40+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2011-12-20T04:38:40+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=741127163d35906d1db1b55ccd557944ec650c37'/>
<id>urn:sha1:741127163d35906d1db1b55ccd557944ec650c37</id>
<content type='text'>
revision 490 missed some required imports.
</content>
</entry>
<entry>
<title>make stdin read from /dev/null for all cloud-init programs (LP: #903993)</title>
<updated>2011-12-19T22:01:07+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2011-12-19T22:01:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=0bc89a7290453f4a496358e90d807c3616518273'/>
<id>urn:sha1:0bc89a7290453f4a496358e90d807c3616518273</id>
<content type='text'>
the cloud-init programs are never intended to run interactively.
Some programs were being run via subprocess, and would notice that their
input was attached to a terminal (/dev/console).   As a result, they
they would try to prompt the user for input (apt-add-repository)

This change simply re-opens standard input as /dev/null so any
subprocesses will not end up blocking on input.
</content>
</entry>
<entry>
<title>fix bad format error in cloud-init-run-module.py</title>
<updated>2010-07-27T19:02:24+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-07-27T19:02:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=81d7b9f56b038b7e49aaef5efbc6c7ec6e11875d'/>
<id>urn:sha1:81d7b9f56b038b7e49aaef5efbc6c7ec6e11875d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use debug rather than error on cloud-init-run-module "already ran"</title>
<updated>2010-07-15T15:48:34+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-07-15T15:48:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=ed3f86d5e459b9a76f73630e8072578cfe9d8fc3'/>
<id>urn:sha1:ed3f86d5e459b9a76f73630e8072578cfe9d8fc3</id>
<content type='text'>
</content>
</entry>
<entry>
<title>improve the cloud-init-run-module code a bit, fix LP:#568139</title>
<updated>2010-06-18T16:50:07+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-06-18T16:50:07+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=6b0bb7b68c86ce8d0297cb1b2d2ee8eaa5427369'/>
<id>urn:sha1:6b0bb7b68c86ce8d0297cb1b2d2ee8eaa5427369</id>
<content type='text'>
568139 was fixed because the test for "always" was using "is"
instead of "=="

LP: #568139</content>
</entry>
<entry>
<title>add initial logging support</title>
<updated>2010-06-17T15:29:34+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-06-17T15:29:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=afb5f8da541f97a9fc5c023cac7dc55b5b81dd06'/>
<id>urn:sha1:afb5f8da541f97a9fc5c023cac7dc55b5b81dd06</id>
<content type='text'>
This logging infrastructure in cloudinit:
- uses python logging
- allows user supplied config of logging.config.fileConfig format to be
  supplied in /etc/cloud/cloud.cfg or in cloud_config by user data.
- by default, tries to use syslog, if that is not available, writes directly to
  /var/log/cloud-init.log (syslog will not be available yet when cloud-init
  runs)
- when using syslog, the doc/21-cloudinit.conf file provides a rsyslogd
  file to be placed in /etc/rsyslog.d/ that will file [CLOUDINIT] messages
  to /var/log/cloud-init.log
</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 EC2Init class to CloudInit</title>
<updated>2010-02-11T18:09:38+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-02-11T18:09:38+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=c2039ded38064cb8b17fc242791e7f16e7f68f4d'/>
<id>urn:sha1:c2039ded38064cb8b17fc242791e7f16e7f68f4d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>add copyright information</title>
<updated>2010-02-04T20:41:16+00:00</updated>
<author>
<name>Scott Moser</name>
<email>smoser@ubuntu.com</email>
</author>
<published>2010-02-04T20:41:16+00:00</published>
<link rel='alternate' type='text/html' href='https://git.amelek.net/vyos/vyos-cloud-init.git/commit/?id=fbe3e44bf2bfab041a1d023b9630ff6227d8a7b2'/>
<id>urn:sha1:fbe3e44bf2bfab041a1d023b9630ff6227d8a7b2</id>
<content type='text'>
</content>
</entry>
</feed>
