Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-06-29 | - Fix logic change introduced by 1000.1.1 | Robert Schweikert | |
2015-06-16 | growpart: fix specification of 'devices' list. | Scott Moser | |
given config: {'growpart': {'devices': ["/"]}} the 'devices' was ignored, it was incorrectly read from the top level non-namespaced location. LP: #1465436 | |||
2015-06-15 | apt_configure: fix importing of apt gpg keys under in python3 | Scott Moser | |
LP: #1463373 | |||
2015-06-15 | cc_rh_subscription: fixes for python3 | Scott Moser | |
2015-05-29 | Corrected spelling error on variable name | Brent Baude | |
2015-05-28 | Tightening up an error message and isinstance usage based on feedback from Dan | Brent Baude | |
2015-05-27 | Updated files with upstream review comments thanks to Dan and Scott | Brent Baude | |
2015-05-21 | This commit consists of three things based on feedback from smosher: | Brent Baude | |
cc_rh_subscription: Use of self.log.info limited, uses the util.subp for subprocesses, removed full path for subscription-manager cloud-config-rh_subscription.txt: A heavily commented example file on how to use rh_subscription and its main keys test_rh_subscription.py: a set of unittests for rh_subscription | |||
2015-05-14 | This patch adds a cloud-init plugin for helping users register | Brent Baude | |
and subscribe their RHEL based systems. As inputs, it can take: - user and password OR activation key and org | requires on of the two pair - auto-attach: True or False | optional - service-level: <string> | optional - add-pool [list, of, pool, ids] | optional - enable-repos [list, of, yum, repos, to, enable] | optional - disable-repos [list, of, yum, repos, to, disable] | optional You can also pass the following to influence your registration via rhsm.conf: - rhsm-baseurl | optional - server-hostname | optional | |||
2015-05-01 | Update is_disk_used for changed enumerate_disk output. | Scott Moser | |
LP: #1311463 | |||
2015-05-01 | fix 'Make pyflakes' | Scott Moser | |
2015-04-16 | pep8 fixes | Scott Moser | |
2015-03-31 | adjust cc_snappy for snappy install package with config. | Scott Moser | |
It was believed that to install a package with config the command was: snappy install --config=config-file <package> Instead, what was implemented in snappy was: snappy install <package> [<config-file>] This modifies cloud-init to invoke the latter and changes the tests appropriately. LP: #1438836 | |||
2015-03-27 | allow-unauthenticated when done from local file | Scott Moser | |
2015-03-27 | do not use set | Scott Moser | |
2015-03-27 | be more user-friendly when looking for matching .config | Scott Moser | |
On fspath installs, look for .config files harder. Given a file named: pkg.namespace_0.version_arch.snap We'll search for config files named: pkg.namespace_0.version_arch.config pkg.namespace.config pkg.config | |||
2015-03-27 | fix read_install | Scott Moser | |
2015-03-27 | address namespacing | Scott Moser | |
2015-03-27 | set snappy command earlier | Scott Moser | |
2015-03-27 | change 'configs' to 'config', and namespace input to 'snappy config' | Scott Moser | |
the input to 'snappy config <packagename>' is expected to have config: <packagename>: content: So here we pad that input correctly. Note, that a .config file on disk is not modified. Also, we change 'configs' to just be 'config', to be possibly compatible with the a future 'snappy config /' that dumped: config: pkg1: data1 pkg2: data2 | |||
2015-03-26 | fix scope so that SNAPPY_CMD is affected by set_snappy_command | Scott Moser | |
2015-03-26 | mention ubuntu-core | Scott Moser | |
2015-03-26 | improve doc, change 'click_packages' path to be 'snaps' | Scott Moser | |
2015-03-26 | rad_pkg_data: return data, fix undefined variable | Scott Moser | |
2015-03-26 | encode needed for yaml_dumps | Scott Moser | |
2015-03-26 | prefer snappy-go to snappy | Scott Moser | |
2015-03-26 | add tests for data types | Scott Moser | |
2015-03-26 | pep8 | Scott Moser | |
2015-03-26 | pep8, and some more tests | Scott Moser | |
2015-03-26 | start of snap_op tests | Scott Moser | |
2015-03-26 | commit work in progress. tests pass. | Scott Moser | |
2015-03-18 | Update is_disk_used for changed enumerate_disk output. | Daniel Watkins | |
Fixes Launchpad bug #1311463. | |||
2015-03-16 | emit_upstart: fix use of undeclared variable | Scott Moser | |
2015-03-05 | fixes from testing | Scott Moser | |
2015-03-05 | do not raise exception on non-existant channel.ini file | Scott Moser | |
2015-03-05 | fixes bug: https://launchpad.net/bugs/1428495 | Scott Moser | |
snappy: disable by default this does 2 things actually a.) disables snappy by default, and adds checks to filesystem to enable it b.) removes the 'render2env' that was mostly spike code. | |||
2015-03-04 | apt_configure: allow disabling | Scott Moser | |
2015-03-04 | grub-dpkg: allow to be disabled | Scott Moser | |
2015-03-04 | locale: make able to be turned off | Scott Moser | |
2015-03-04 | add snappy module | Scott Moser | |
2015-03-04 | run emit_upstart only if upstart was init system | Scott Moser | |
2015-02-13 | fix usage of python2 'print' | Scott Moser | |
2015-02-13 | support for managing GPT partitions | Scott Moser | |
Specifically, this is to support Azure's G-series VMs (which come with disks up to 6500GB). | |||
2015-02-11 | provide default final message in jinja to avoid WARN in log | Scott Moser | |
2015-02-10 | pep8 | Scott Moser | |
2015-02-11 | fix random_seed module | Scott Moser | |
2015-02-10 | use encode_text | Scott Moser | |
2015-02-10 | fix parse_qs usage | Scott Moser | |
2015-02-10 | fix use of 'letters' and translate | Scott Moser | |
2015-01-27 | Respond to review: | Barry Warsaw | |
- Refactor both the base64 encoding and decoding into utility functions. Also: - Mechanically fix some other broken untested code. |