- 06 Nov, 2012 1 commit
-
-
Fabian Arrotin committed
-
- 03 Nov, 2012 1 commit
-
-
Michael DeHaan committed
-
- 31 Oct, 2012 2 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 30 Oct, 2012 1 commit
-
-
Serge van Ginderachter committed
-
- 16 Oct, 2012 1 commit
-
-
Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
Brian Coca committed
-
- 12 Oct, 2012 1 commit
-
-
Signed-off-by: Brian Coca <briancoca+ansible@gmail.com>
Brian Coca committed
-
- 10 Oct, 2012 1 commit
-
-
Michael DeHaan committed
-
- 01 Oct, 2012 1 commit
-
-
Jan-Piet Mens committed
-
- 30 Sep, 2012 1 commit
-
-
This gathers LSB facts via lsb_release. This complements the platform facts collected via the platform module. This reoprts release, id, description, release, and codename. It also adds 'major_release', which is the major version number of a distribution.
Stephen Fromm committed
-
- 19 Sep, 2012 1 commit
-
-
Jan-Piet Mens committed
-
- 18 Sep, 2012 1 commit
-
-
Jan-Piet Mens committed
-
- 17 Sep, 2012 3 commits
-
-
Romeo Theriault committed
-
Stephen Fromm committed
-
This should help facilitate playbook decision making that are not strictly distribution specific, but more package manager.
Stephen Fromm committed
-
- 08 Sep, 2012 1 commit
-
-
Matt Coddington committed
-
- 06 Sep, 2012 2 commits
-
-
s/<8spaces>/<4spaces>/g
Jan-Piet Mens committed -
The use-case here is that based on information in the /proc/cmdline certain actions can be taken. A practical example in our case is that we have a play at the end of the provisioning phase that reboots the system. Since we don't want to accidentally reboot a system (or restart the network) on a production machine, having a way to separate an Anaconda post-install (sshd in chroot) with a normal system is a good way to make that distinction. --- - name: reboot hosts: all tasks: - action: command init 6 only_if: "not '${ansible_cmdline.BOOT_IMAGE}'.startswith('$')" A practical problem here is the fact that we cannot simply check whether it is set or empty: --- - name: reboot hosts: all tasks: - action: command init 6 only_if: "'${ansible_cmdline.BOOT_IMAGE}'" If ansible_cmdline was a string, a simple only_if: "'${ansible_cmdline}'.find(' BOOT_IMAGE=')" was an option, but still not very "beautiful" :-/ This implementation uses shlex.split() and uses split(sep, maxsplit=1).
Dag Wieers committed
-
- 05 Sep, 2012 1 commit
-
-
Michael DeHaan committed
-
- 02 Sep, 2012 1 commit
-
-
Michael DeHaan committed
-
- 30 Aug, 2012 1 commit
-
-
* Migraed easy_install, pip, service, setup, and user. * Updated fail_json message in apt_repository * Fixed easy_install to not hardcode location of virtualenv in /usr/local/bin/. * Made handling of virtualenv more consistent between easy_install and pip.
Stephen Fromm committed
-
- 28 Aug, 2012 1 commit
-
-
Timothy Appnel committed
-
- 24 Aug, 2012 1 commit
-
-
Works on Sheevaplug, probably works on Rasberry Pi as well
Maxim Burgerhout committed
-
- 20 Aug, 2012 1 commit
-
-
Tim Bielawa committed
-
- 17 Aug, 2012 1 commit
-
-
Daniel Hokka Zakrisson committed
-
- 15 Aug, 2012 1 commit
-
-
If there is an error in how interfaces are configured (or only one set, like IPv6), the setup command should not error out.
Sundar Raman committed
-
- 14 Aug, 2012 2 commits
-
-
Daniel Hokka Zakrisson committed
-
Ahmad Khayyat committed
-
- 12 Aug, 2012 2 commits
-
-
If ip is not found in either /sbin or /usr/sbin, this will return an empty result. It seems extremely unlikely that a linux system will not have iproute2 installed
Stephen Fromm committed -
Specify full path to ip and add third argument 'show' to be explicit about requested action. This goes from 'ip addr' to '/sbin/ip addr show'.
Stephen Fromm committed
-
- 11 Aug, 2012 6 commits
-
-
Michael DeHaan committed
-
Make pep8 tests run against the library directory as well, and associated tweaks (mostly to indentation) in the library directory.
Michael DeHaan committed -
Michael DeHaan committed
-
Ahmad Khayyat committed
-
Ahmad Khayyat committed
-
Ahmad Khayyat committed
-
- 08 Aug, 2012 2 commits
-
-
Stephen Fromm committed
-
Stephen Fromm committed
-
- 07 Aug, 2012 1 commit
-
-
whitespace + remove deprecated YAML parser (migration script lives in examples/scripts and warning was added in 0.6 release)
Michael DeHaan committed
-
- 03 Aug, 2012 1 commit
-
-
Add encoding lines to python modules such that they can take unicode options if they are fed them, since the AnsibleModule stuff no longer base64 encodes for simplicity and speed reasons.
Michael DeHaan committed
-