- 20 Jun, 2013 7 commits
-
-
Merge branch 'generalise-hacking-dir-path-discovery' of git://github.com/madduck/ansible into envsetup2
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 29 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 -
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
-
datadog_event module: submit your events to DataDog service.
Michael DeHaan committed -
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
Add OpenRC support to the service module.
Michael DeHaan committed -
Removed merge conflict header
Michael DeHaan committed -
Make 'ansible_ssh_user' available in templates
Michael DeHaan committed
-
- 18 Jun, 2013 4 commits
-
-
pkg option of apt is not required
Michael DeHaan committed -
Fix typo in PKGBUILD
Michael DeHaan committed -
spelling ansbile->ansible
Michael DeHaan committed -
You can use apt module with update_cache and without specifying a package. Update the docs to reflect this.
Jesse Keating committed
-