Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-08-08 | merge: These are the changes from the freebsd-static-networking branch. | Harm Weites | |
2014-07-29 | do not put comments in /etc/timezone | Scott Moser | |
comments in /etc/timezone are not expected, and can cause problems if another tool tries to read it. LP: #1341710 | |||
2014-02-28 | distros/freebsd.py: fix regression due to previous pylint cleanup | Scott Moser | |
2014-02-12 | drop 'is_excluded'. | Scott Moser | |
for now, this the mechanism just doesn't seem right. I think i'd rather have the module declare supported distros than have distros declare [un]supported modules. | |||
2014-02-12 | fix pylint warning (and real bug) in bad spelling of resolve_conf_fn | Scott Moser | |
2014-02-06 | Removed yum exclude module entry from gentoo distro | Nate House nathan.house@rackspace.com | |
2014-02-06 | Added arch distro class to merge request | Nate House nathan.house@rackspace.com | |
2014-02-06 | Added arch network config | Nate House nathan.house@rackspace.com | |
2014-02-06 | Removed exclude bits from yum module as its not a default | Nate House nathan.house@rackspace.com | |
2014-02-04 | Merge gentoo branch and updated set-password to support systemctl | Nate House nathan.house@rackspace.com | |
2014-02-04 | Update ssh_svcname in init | Nate House nathan.house@rackspace.com | |
2014-02-04 | Initial arch distro add. | Nate House nathan.house@rackspace.com | |
2014-02-03 | Fix merge conflict | Nate House nathan.house@rackspace.com | |
2014-02-03 | Fix sshd restart | Nate House nathan.house@rackspace.com | |
2014-02-02 | Net interface up updates and override ssh_svcname to init scripts | Nate House nathan.house@rackspace.com | |
2014-01-28 | Updated exclude modules for gentoo distro. | Nate House nathan.house@rackspace.com | |
2014-01-28 | exclude modules fix 1 | Nate House nathan.house@rackspace.com | |
2014-01-27 | Adds distro module exclude support | Nate House nathan.house@rackspace.com | |
2014-01-27 | init_cmd inheritance fixes | Nate House nathan.house@rackspace.com | |
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-24 | init_cmd distro unique supports gentoo init scripts | Nate House nathan.house@rackspace.com | |
2014-01-23 | Package manager install / update fixes and service restart foo | Nate House nathan.house@rackspace.com | |
2014-01-23 | Initial add Gentoo distro | Nate House nathan.house@rackspace.com | |
2014-01-23 | fix freebsd new file header | Scott Moser | |
2014-01-23 | pep8/tab to 8 spaces | Scott Moser | |
2014-01-23 | merge from trunk | Scott Moser | |
2014-01-23 | remove some white space | Scott Moser | |
2014-01-22 | Add a new line | Joshua Harlow | |
2014-01-22 | Add comments as to format with example in/out | Joshua Harlow | |
2014-01-22 | Split net-parsing into own module | Joshua Harlow | |
The ubuntu/debian networking file parsing function really is more generic than just a rhel utility function and can be used by others that want to use this functionality for there own purposes (say in writing down a freebsd network format instead) so moving this to its own module to encourage its usage outside of rhel. | |||
2013-12-18 | new: Apply the locale to the default login class. | Harm Weites | |
2013-12-14 | support calling apt with eatmydata, enable by default if available. | Scott Moser | |
This allows a general config option to prefix apt-get commands via 'apt_get_wrapper'. By default, the command is set to 'eatmydata', and the mode set to 'auto'. That means if eatmydata is available (via which), it will use it. The 'command' can be either a array or a string. LP: #1236531 | |||
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 | |||
2013-08-06 | fix pep8 and pylint warnings | Scott Moser | |
2013-07-24 | Remove duplicate timezone file finding and error raising. | Joshua Harlow | |
2013-07-17 | plain text password of '' or None should not trigger setting | Scott Moser | |
2013-06-27 | Fix SLES zypper command usage | Juerg Haefliger | |
2013-06-27 | Remove 'Copyright SUSE' from the headers | Juerg Haefliger | |
Per discussion with Robert @ SUSE since he can't sign the CCA. | |||
2013-06-26 | Use short option names for passwd utilities | Juerg Haefliger | |
SLES 11 doesn't support long option names for the passwd utilities. Use the short option names in the parent distro class and remove the custom SLES methods. | |||
2013-06-25 | Add a SLES distro handler | Juerg Haefliger | |
2013-06-25 | Move some RHEL distro methods to their own new file | Juerg Haefliger | |
So that they can be used by other handlers. | |||
2013-06-20 | Cleanup Distro.create_user() method | Juerg Haefliger | |
Move adding of a user and locking of a password to their own methods so that distro handlers can override them. | |||
2013-06-19 | fix and cleanup usage of util.logexc | Juerg Haefliger | |
2013-04-10 | improvments to systemd/fedora 18 support | Greg Padgett | |
This branch contains fixes found while investigating integration of cloud-init into oVirt. They're in 3 categories: - compatibility with systemd configuration management (as used in Fedora 18) - workaround for a 2.6 kernel quirk which prevented 'blkid' from displaying /dev/sr0 in some cases - writing sysconfig files in typical convention, with a newline preceding EOF, to make some parsers happy |