Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-08-07 | catch exception in webhook, adjust logging to use cloud-init logging | Scott Moser | |
2015-08-07 | fix syntax | Scott Moser | |
2015-08-07 | improvements on skew | Scott Moser | |
2015-08-07 | seems functional in test | Scott Moser | |
2015-08-07 | hopefully fix DataSourceMAAS | Scott Moser | |
2015-08-06 | add the webhook handler | Scott Moser | |
2015-08-06 | tests pass | Scott Moser | |
2015-08-06 | sync with cloudinit 2.0 for registry and reporting | Scott Moser | |
2015-08-04 | sync tests back | Scott Moser | |
2015-08-04 | fix pep8 | Scott Moser | |
2015-08-04 | merge from trunk | Scott Moser | |
2015-08-04 | pep8 fixes | Scott Moser | |
2015-08-04 | sync to 2.0 review @ patchset 4 | Scott Moser | |
2015-08-04 | fix all tests (were broken due to copied code call to userdata twice | Scott Moser | |
2015-08-04 | fix lack of import in cloud.py | Scott Moser | |
2015-08-02 | event name doesnt need mode as it is run through init-local or init-net | Scott Moser | |
2015-08-02 | fix tests from sync | Scott Moser | |
change ReportStack to ReportEventStack change default ReportEventStack to be status.SUCCESS instead of None | |||
2015-08-02 | sync with 2.0 trunk on reporting | Scott Moser | |
2015-07-31 | plumb the rest the reporting through | Scott Moser | |
2015-07-31 | init single: hook up reporter | Scott Moser | |
2015-07-31 | adjust searching so cache hits are logged | Scott Moser | |
2015-07-31 | move 'mode' out of SearchReportStack | Scott Moser | |
2015-07-31 | address Daniel's comments in review | Scott Moser | |
2015-07-31 | merge from trunk | Scott Moser | |
2015-07-31 | add nicer formating and messages for datasource searching | Scott Moser | |
2015-07-31 | status_wrapper in main: correct fix use of print_exc when handling exception | Scott Moser | |
2015-07-31 | fix issues found when testing | Scott Moser | |
2015-07-30 | fix arg ordering | Scott Moser | |
2015-07-30 | status_wrapper in main: fix use of print_exc when handling exception | Scott Moser | |
2015-07-30 | fix call to print_exc | Scott Moser | |
2015-07-30 | fix namespace / local variable collision | Scott Moser | |
2015-07-30 | tests pass | Scott Moser | |
2015-07-28 | pull from 2.0 trunk @ a433358bbcf4e8a771b80cae34468409ed5a811d | Scott Moser | |
2015-07-28 | rsyslog: skip empty or None in remotes format | Scott Moser | |
This allows user to specify the following to overwrite a previously declared entry without warnings. rsyslog: {'remotes': {'foo': None}} | |||
2015-07-28 | rsyslog: add new format of config | Scott Moser | |
new format of config is namespaced under top level 'rsyslog' rather than having 3 tokens in the top level namespace. Additionally added here are: * tests * support for legacy config * support for 'remotes' configuration allowing simple config like rsyslog: remotes: {'myremote': "192.168.1.1"} | |||
2015-07-28 | remove 'syslog' module (its been moved to rsyslog) | Scott Moser | |
2015-07-28 | doc: mention how to run syslog server | Scott Moser | |
2015-07-28 | must declare proto of '@' | Scott Moser | |
2015-07-28 | add trailing newline only if necessary | Scott Moser | |
2015-07-28 | fix bug in remotes_to_rsyslog_cfg, add test | Scott Moser | |
2015-07-28 | add support for 'remotes' | Scott Moser | |
2015-07-27 | fix kwarg | Scott Moser | |
2015-07-27 | fix build with merge from trunk | Scott Moser | |
2015-07-27 | use 'restart' rather than 'reload' on non-systemd systems | Scott Moser | |
Testing on trusty shows that: service rsyslog reload does produce a message like: rsyslogd was HUPed but does not result in new config being in honored. Using restart does, and with upstart that should be fine (as upstart will start only if previously running). | |||
2015-07-27 | _read_dmi_syspath: fix bad log message causing unintended exception | Scott Moser | |
2015-07-27 | merge from trunk | Scott Moser | |
2015-07-27 | add rsyslog tests | Scott Moser | |
reasonable test of reworked rsyslog module | |||
2015-07-27 | update existing rsyslog module with better code and doc | Scott Moser | |
2015-07-24 | commit initial re-work/re-implementation of syslog config | Scott Moser | |
2015-07-22 | mounts: support reliably detecting and using Azure ephemeral disks | Scott Moser | |
Azure's ephemeral disks are not guaranteed to be assigned the same name by the kernel every boot. This causes problems on ~2% of Azure instances, and can be fixed by using udev rules to give us a deterministic path to mount; this patch introduces those udev rules and modifies the Azure data source to use them. Changes to a couple of config modules were also required. In some places, they just needed to learn to dereference symlinks. In cc_mounts this wasn't sufficient because the dereferenced device would have been put in /etc/fstab (rather defeating the point of using the udev rules in the first place). A fairly hefty refactor was required to separate "is this a valid block device?" from "what shall I put in fstab?". LP: #1411582 |