- 10 Oct, 2012 13 commits
-
-
Marco Vito Moscaritolo committed
-
Example plugin to send out mails on error
Michael DeHaan committed -
Fix inventory API groups
Michael DeHaan committed -
Jeroen Hoekx committed
-
Jeroen Hoekx committed
-
This is useful mostly for playbooks that run unattended and for a limited set of systems. In case of provisioninging this plugin (together with a final mail action) helps to get notified when something went wrong, or when the installation finished successfully. Unfortunately, there is no way to enable/disable a plugin from a playbook. So installing the plugin means all other use-cases (provisioning, troubleshooting, reporting or management) all send mails on failure. Something we may want to fix in the future...
Dag Wieers committed -
Workaround for when HP iLO is in a state it won't accept requests
Michael DeHaan committed -
Add a yaml format inventory plugin.
Michael DeHaan committed -
Openstack rackspace update
Michael DeHaan committed -
Module network_facts to gather facts based on network information
Michael DeHaan committed -
Michael DeHaan committed
-
Typo in example section for 'setup' module docs.
Michael DeHaan committed -
Michael DeHaan committed
-
- 09 Oct, 2012 11 commits
-
-
mxxcon committed
-
Dag Wieers committed
-
Marco Vito Moscaritolo committed
-
Marco Vito Moscaritolo committed
-
This fixes #1265.
Jeroen Hoekx committed -
This workaround is recommended from HP iLO's documentation, but may not be sufficient in all cases. Time will tell. I also made a few cosmetic changes with no impact.
Dag Wieers committed -
Michael DeHaan committed
-
Sigh, another retypo
Michael DeHaan committed -
Fixes to documentation
Michael DeHaan committed -
Dag Wieers committed
-
Dag Wieers committed
-
- 08 Oct, 2012 16 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Makes ports configurable for fireball. Note port defaults really belong in the connection plugins, not runner, which can be refactored later.
Michael DeHaan committed -
Various small fixes to boolean usage and defaults
Michael DeHaan committed -
cron feature (w/o tests)
Michael DeHaan committed -
Keep the man3 directory. 'make docs' breaks without it.
Michael DeHaan committed -
Add this module's namespace to the 'module_' namespace.
Michael DeHaan committed -
Fix typo in service module docs
Michael DeHaan committed -
Add inventory variables for hosts not in the play to hostvars.
Michael DeHaan committed -
Look up only when requested and cache the result.
Jeroen Hoekx committed -
Tim Bielawa committed
-
Tim Bielawa committed
-
Dane Summers committed
-
Much like we currently have *setup* register the variable `module_setup`, we would like other facts-modules register their own namespace. This means that: - *network_facts* registers `module_network` - *hpilo_facts* registers `module_hw` - *vsphere_facts* registers `module_hw` In retrospect, it would have made more sense to have `setup` register `module_ansible` instead as the setup module uses the `ansible_` namesepace. Having the `module_` namespace allows us to check whether a certain namespace has already been loaded so we can avoid running the facts module a second time using only_if. ```yaml - action: network_facts host=${ansible_hostname_short} only_if: is_unset('$module_network') ```
Dag Wieers committed -
Dag Wieers committed
-