- 07 Sep, 2012 3 commits
-
-
Add /proc/cmdline information to the default facts
Michael DeHaan committed -
Add support for RSA/DSA SSH host key detection in setup module for OS/X
Michael DeHaan committed -
Added to_yaml and from_yaml filters to Jinja environment.
Michael DeHaan committed
-
- 06 Sep, 2012 11 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
s/<8spaces>/<4spaces>/g
Jan-Piet Mens committed -
Timothy Appnel committed
-
Anastasis Andronidis 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 4 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 06 Sep, 2012 1 commit
-
-
Fixed a parsing HEAD problem, when ansible is checked out as a submodule
Michael DeHaan committed
-
- 05 Sep, 2012 2 commits
-
-
Anastasis Andronidis committed
-
Michael DeHaan committed
-
- 04 Sep, 2012 16 commits
-
-
Michael DeHaan committed
-
Use `get_bin_path` properly for supervisorctl module
Michael DeHaan committed -
Keep result pristine for ignore_errors
Michael DeHaan committed -
Daniel Hokka Zakrisson committed
-
Anastasis Andronidis committed
-
Anastasis Andronidis committed
-
Daniel Hokka Zakrisson committed
-
Daniel Hokka Zakrisson committed
-
Daniel Hokka Zakrisson committed
-
Anastasis Andronidis committed
-
Fixed a parsing HEAD problem, when ansible is checked out as a submodule in git
Anastasis Andronidis committed -
Allow ~ expansion in chdir argument of command module
Michael DeHaan committed -
This allows the use of ~ in the chdir argument of the command module I know the later change is absolutely necessary as the first change was not sufficient. It may be that the first change fixes shell and the second fixes command.
willthames committed -
Subversion dest should allow ~ expansion
Michael DeHaan committed -
Used os.path.expanduser on dest to allow e.g. ~/svn/repo as a destination
willthames committed
-
- 02 Sep, 2012 2 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
- 31 Aug, 2012 1 commit
-
-
Matt Wright committed
-