- 20 Jun, 2013 19 commits
-
-
with_inventory_hostnames inventory based lookup plugin
Michael DeHaan committed -
ini_file: add support for lists of options/values
Michael DeHaan committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
Conflicts: library/cloud/digital_ocean
Michael DeHaan committed -
Michael DeHaan committed
-
Vincent Viallet committed
-
Ensure an existing ssh-key returns useful information (id + name) instead of a string; this way it can be used to register a variable to use in a later task.
Vincent Viallet committed -
Vincent Viallet committed
-
Generalise hacking dir path discovery
Michael DeHaan committed -
Merge branch 'generalise-hacking-dir-path-discovery' of git://github.com/madduck/ansible into envsetup2
Michael DeHaan committed -
enable use of multiple terms in first_found
Michael DeHaan committed -
Michael DeHaan committed
-
A small error in the reuse of a variable caused packages to never get purged. This commit fixes that. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
bug fix: modify get_device_facts to handle servers with multiple pci domains
Michael DeHaan committed -
Michael DeHaan committed
-
Explicitly mention the Linux requirement for the Ansible machine, remove...
Michael DeHaan committed
-
- 19 Jun, 2013 21 commits
-
-
Michael DeHaan committed
-
Michael DeHaan committed
-
This reverts commit 4942a06b. Conflicts: lib/ansible/runner/__init__.py
Michael DeHaan committed -
It's WITH_ITEMS_USES_LIST not WITH_ITEMS_WANTS_LIST.
Michael DeHaan committed -
Scott Sturdivant committed
-
make name the parameter, with hostname as alias
Michael DeHaan committed -
django_manage: Pass --noinput to migrate
Michael DeHaan committed -
datadog_event module requires urllib2, not httplib2.
Michael DeHaan committed -
trbs committed
-
Older python-apt modules don't export Package.installed_files and there seems to be no other way to figure out if a package is removed-but-not-purged, so we just always assume it's purged. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
Arturas Slajus committed
-
A package may be removed but not purged with APT. The only way to identify this state is by looking at the list of installed files of a package. Even if the package has no files installed, this list will be non-empty until the package is removed: # python -c "import apt; c=apt.Cache(); c.update(); c.open(); p=c['ruby1.8']; print p, p.installed, p.installed_files" <Package: name:'ruby1.8' id:1425> None [u''] # dpkg --purge ruby1.8 (Reading database ... 27904 files and directories currently installed.) Removing ruby1.8 ... Purging configuration files for ruby1.8 ... # python -c "import apt; c=apt.Cache(); c.update(); c.open(); p=c['ruby1.8']; print p, p.installed, p.installed_files" <Package: name:'ruby1.8' id:1425> None [] See http://bugs.debian.org/712749 too. If a package is not marked installed but it still 'has_files', then it should be processed if the request is to purge it. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
A small error in the reuse of a variable caused packages to never get purged. This commit fixes that. Signed-off-by: martin f. krafft <madduck@madduck.net>
martin f. krafft committed -
name is used throughout Ansible, it's the "standard". This change applies that standard to the add_host routine and updates the docs to reflect that. Related to https://github.com/ansible/ansible/pull/3254
Jesse Keating committed -
The django 'migrate' command should receive the --noinput command, otherwise it can block waiting for user input.
Lorin Hochstein committed -
On machines with multiple pci domains get_device_facts would fail to find a matching pci device causing setup to fail. Also on some platforms there is additional information between the pci information and 'host'. Modified get_device_facts to call lspci with the -D option and modified the regex to account for the pci domain and to be more selective.
Patrick Callahan committed -
Tim Gerla committed
-
bug fix for #3077, environment settings for script
Michael DeHaan committed -
changed get_mount_facts to ignore mount types 'none'
Michael DeHaan committed -
Michael DeHaan committed
-