Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-03-03 | Update pep8 runner and fix pep8 issues | Ryan Harper | |
2015-01-21 | Largely merge lp:~harlowja/cloud-init/py2-3 albeit manually because it seemed | Barry Warsaw | |
to be behind trunk. `tox -e py27` passes full test suite. Now to work on replacing mocker. | |||
2015-01-16 | hostname: apply hostname same as is written | Scott Moser | |
on RHEL, we were writing to persistent configuration the fqdn, but invoking 'hostname' on the first boot with just the shortname. On 'reboot', then the hostname would differ. Now, whatever we write, invoke hostname with. Also remove some duplicate code. LP: #1246485 | |||
2015-01-06 | tools/run-pep8: remove leading ',' fed to --ignore | Scott Moser | |
--ignore was being called with ',E121,E...' rather than 'E121,E...'. that resulted in odd behavior, missing the pep8 errors that are fixed here. | |||
2014-10-08 | fix: Use continue to skip inside a loop. | Harm Weites | |
2014-10-08 | fix: Take care of FreeBSD nic devicenames since they differ depending | Harm Weites | |
on the platform involved. Xen/KVM (Azure?) use different drivers, which results in different device names. | |||
2014-10-02 | freebsd: Use the proper virtio FreeBSD network interface name. | Scott Moser | |
2014-09-10 | pyflakes fixes. | Scott Moser | |
make pyflakes now passes. | |||
2014-09-03 | fix: Write sudo rules upon user creation. | Harm Weites | |
2014-08-28 | fix: The original regex was a little harsh, the rest of the bits | Harm Weites | |
regarding keys and values from /etc/rc.conf is tweaked as well (harlowja). | |||
2014-08-26 | change: Use a compiled regex and use the included match groups instead | Harm Weites | |
of matching yet again. | |||
2014-08-23 | fix: Drop some overly loud debug messages. | Harm Weites | |
2014-08-08 | fix: Skip lines from /etc/rc.conf not matching the pattern key=value. | Harm Weites | |
2014-08-08 | merge: These are the changes from the freebsd-static-networking branch. | Harm Weites | |
2014-02-28 | distros/freebsd.py: fix regression due to previous pylint cleanup | Scott Moser | |
2014-01-24 | Don't try to create members if group creation fails | Joshua Harlow | |
2014-01-24 | Fix logexc usage in freebsd distro | Joshua Harlow | |
- There appeared to be a few logexc calls that did not pass the logger in, fix those locations where this occured. - When a group member adding fails, log the error and try the next member instead of failing adding any more members | |||
2014-01-24 | Log failure to restore backup locale file | Joshua Harlow | |
2014-01-24 | Freebsd cleanups | Joshua Harlow | |
- Remove direct usage of open() and use the corresponding helpers instead. - Fix the non-existence of the copyfile routine and just use the ones that do exist in the utils module to do the file backup. - Use class level constants for the various file names read, this matches the same usage in the other distro types. | |||
2014-01-24 | pylint and long line fixes. | Scott Moser | |
This fixes up many long lines to be < 80 chars and some other pylint issues. pylint 1.1 (in trusty) is now complaining about the lazy logging, so I'll clean that up when I touch things. | |||
2014-01-24 | pep8/pylint fixes | Scott Moser | |
tools/run-pep8 wasn't checking all python files. tools/run-pylint wasnt checking bin/cloud-init fixed resultant pep8 issues after finding them. | |||
2014-01-23 | fix freebsd new file header | Scott Moser | |
2014-01-23 | pep8/tab to 8 spaces | Scott Moser | |
2013-12-18 | new: Apply the locale to the default login class. | Harm Weites | |
2013-12-14 | change: Separate functions to load, read and write /etc/rc.conf keys and | Harm Weites | |
values. Use these right away to read and change the hostname. | |||
2013-12-06 | new: FreeBSD module to support cloud-init on the FBSD10 platform. In its | Harm Weites | |
current form its still missing some modules though. Supported: -SSH-keys -growpart -growfs -adduser -powerstate |