- 12 Dec, 2012 10 commits
-
-
Fix ppa syntax in apt_repository module doc
Michael DeHaan committed -
ansible-doc: print Notes heading only if there are any
Michael DeHaan committed -
pip module improvements
Michael DeHaan committed -
Tweak docs for correct paths and filenames for ec2 inventory
Michael DeHaan committed -
- Do not silently ignore malformed pip requirements files. - Properly reports changed when removing packages. - "latest" i.e. --upgrade is *not* incompatible with requirements files. - Less branchy, simpler logic. - Removed pointless variable "initializations", Python doesn't need that. Other code simplifications. - Fun fact; pip install is (kind of) case insensitive, pip freeze is not. So, 'sqlalchemy' will be reported as installed by install, but missing by freeze. The perhaps controversial change and the one that led to finding / fixing above issues... Instead of adding command parameters 'index', and 'find', and 'mirrors', and etc. Added 'extra_args' which are passed onto pip. The use case for --index-url is having a private pypi repo, like http://pypi.python.org/pypi/localshop, to which you publish private packages. I'm sure most every pip option has a use case for someone. extra_args handles all those. Can reserve ansible command parameters for the most common. Tested with pip 1.1.
Norman J. Harman Jr committed -
if user has manually installed an intermediate version - don't ignore it...
Daniel Hokka Zakrisson committed -
Seth Vidal committed
-
Mark Theunissen committed
-
make --list-hosts expand out extra vars in the hosts: field
Daniel Hokka Zakrisson committed -
The example for using a ppa had the wrong syntax. Ironically, the correct syntax is illustrated in a comment on line 23.
Lorin Hochstein committed
-
- 11 Dec, 2012 2 commits
-
-
Seth Vidal committed
-
Jan-Piet Mens committed
-
- 10 Dec, 2012 1 commit
-
-
CLI: ansible-doc rebased
Michael DeHaan committed
-
- 07 Dec, 2012 1 commit
-
-
added support for scheduling downtime for all services on host
Michael DeHaan committed
-
- 06 Dec, 2012 2 commits
-
-
supervisorctl: document the 'present' option
Stephen Fromm committed -
Alexandre Bourget committed
-
- 05 Dec, 2012 5 commits
-
-
Fix "NameError: global name 'name' is not defined" exception
Michael DeHaan committed -
Dag Wieers committed
-
Daniel Hokka Zakrisson committed
-
Further refine remote branch tracking in b1ec6e81
Stephen Fromm committed -
Move operations that are dependant on a remote branch under a if is_remote_branch() conditional. While at it, remove assignment to cmd string in same block that wasn't used when calling _run().
Stephen Fromm committed
-
- 04 Dec, 2012 4 commits
-
-
Fix git module to update branch to latest when using version=<branch>
Stephen Fromm committed -
The git module would not pull in updates to a branch when version=<branch>. This updates that block to checkout the branch and then do a git reset --hard <remote>/<branch>. This should now track updates to a branch.
Stephen Fromm committed -
Import errno to avoid 'NameError: global name 'errno' is not defined'
Daniel Hokka Zakrisson committed -
I hit the following exception because errno is referenced but not imported. ``` fatal: [system01] => failed to parse: Traceback (most recent call last): File "/root/.ansible/tmp/ansible-1354644532.37-246102819320352/copy", line 782, in <module> main() File "/root/.ansible/tmp/ansible-1354644532.37-246102819320352/copy", line 117, in main module.atomic_replace(dest_tmp, dest) File "/root/.ansible/tmp/ansible-1354644532.37-246102819320352/copy", line 772, in atomic_replace if e.errno != errno.EPERM: NameError: global name 'errno' is not defined ```Dag Wieers committed
-
- 03 Dec, 2012 2 commits
-
-
Piotr Kweclich committed
-
Jan-Piet Mens committed
-
- 02 Dec, 2012 10 commits
-
-
Template override
Michael DeHaan committed -
Further tweak how to find pip in virtualenv on centos/redhat/fedora
Stephen Fromm committed -
In a virtualenv, pip is called just pip. This fixes the pip module to search for the virtualenv pip first before trying the pip-python and python-pip variants. Without this, pip module would not install to the virtualenv when that parameter is provided.
Stephen Fromm committed -
Make use of mirrors in pip module configurable with use_mirrors option
Stephen Fromm committed -
Older versions of pip (anything less than 1.0?) do not support --use-mirrors flag. This makes it configurable. Default is yes.
Stephen Fromm committed -
Daniel Hokka Zakrisson committed
-
Implements multiple interpreter overrides
Daniel Hokka Zakrisson committed -
Allow inventory scripts to define groups of groups and group vars
Daniel Hokka Zakrisson committed -
Fix pip module to check if requirements already installed
Stephen Fromm committed -
This updates _is_package_installed() to accept a requirements file as an argument. This is used later in main() to check if python libs specified in a requirements file are already installed. I updated main() to consolidate the handling of install/uninstall in a single block. This should help if someone wants to remove packages specified by a requirements file.
Stephen Fromm committed
-
- 01 Dec, 2012 3 commits
-
-
Updated ansible version to align with RPM package
Michael DeHaan committed -
Dag Wieers committed
-
Michael DeHaan committed
-