Commit Graph

560 Commits (62f1347f696238445ed8db8f281692484d00971a)
 

Author SHA1 Message Date
Sundar Raman 62e082a1c7 (Re #882) Handle errors in get_interfaces
If there is an error in how interfaces are configured (or only one set, like IPv6),
the setup command should not error out.
12 years ago
Dane Summers d5482f1320 support for subversion repositories 12 years ago
Jeremy Penner fdf7f3ae6d Make easy_install module actually work.
mpdehaan requested in ansible/ansible#795 that globals be removed.
The response was to remove the lines with the word 'global', but not
the actual use of global variables.  Which makes the module break silently.
Updated to use local variables.
12 years ago
Michael DeHaan e3ffe74c33 meaningless whitespace changes 12 years ago
Michael DeHaan ffcd959e15 Can use fail JSON here, remove debug statement 12 years ago
Michael DeHaan c62f404bde Fix aliases, package not found is not an error 12 years ago
Michael DeHaan 43aa54386e Merge branch 'devel' of https://github.com/skvidal/ansible into devel 12 years ago
Michael DeHaan a102507a5c Merge pull request #866 from akhayyat/devel
setup: add type and default_ipv{4,6} to linux network facts
12 years ago
Michael DeHaan 91a4e33bd8 Merge pull request #876 from elventear/postgresql_fix
Changes to postgresql to support defaults settings and older psycopg2
12 years ago
Pepe Barbe db957df5af Autocommit support for psycopg2 < 2.4.2 12 years ago
Pepe Barbe dfce4a20a1 Fix using postgres default values
When initalizing a connection to psycopg2, in order to use the default
values, the keywords must be missing. So we use a dictionary as a kwarg
and include only the keywords that do not have an empty value on the
module parameters.
12 years ago
Seth Vidal da26266ef3 fixes to yum module
include local_nvra
change the remove behavior to pretty much NEVEr error out if the pkg is not there (or anywhere)
12 years ago
Seth Vidal 5267b75c31 cover all of the edge cases with and without yum-utils installed.
it is possible those folks w/o yum-utils installed but with rhn-plugin
installed but w/o any rhn-certificates will still see an error msg.
they have 3 options:
1. remove rhn-plugin
2. enable some channels w/rhn certs
3. install yum-utils
12 years ago
Seth Vidal ddb18cfd76 subprocess is already imported in module_common - no need for it here 12 years ago
Daniel Hokka Zakrisson e79667bcad Fix spelling of architecture for non-x86 12 years ago
Ahmad Khayyat a9ebe9cb2b setup: add type and default_ipv{4,6} to linux network facts 12 years ago
Michael DeHaan 498bebd03e update config code 12 years ago
Michael DeHaan a8d51a1508 Merge pull request #859 from zecrazytux/bugfix/apt_repository
Bugfix/apt repository
12 years ago
Michael DeHaan bca8ca955b Merge pull request #860 from goozbach/broken_mount
fixed missing module argument for mount module
12 years ago
Pepe Barbe e33973e8ca Use Python 2.4 compatible syntax 12 years ago
Derek Carter 44138e8c07 fixed missing module argument for mount module 12 years ago
Sebastien Bocahu c7ada98af0 Quote the repository string when appending it to the command line in the apt_repository module. 12 years ago
Sebastien Bocahu 41422e852c Add support for Debian in apt_repository 12 years ago
Sebastien Bocahu b030d787fd Fixed scoping issue in apt_repository module. 12 years ago
Stephen Fromm a991c43702 Try to find ip command in either /sbin or /usr/sbin
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
12 years ago
Stephen Fromm da58114c87 Tweak invocation of ip in LinuxNetwork
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'.
12 years ago
Michael DeHaan ed449ed3e2 Fix indentation 12 years ago
Michael DeHaan 331ee3a0a4 rename variable 'pkg' in yum module such that the auto-handled error messages use the same key. 12 years ago
Michael DeHaan 3b81df1e67 Add module common code to allow it to be easier to indicate whether arguments are mutually exclusive, required in conjunction, or whether one of a list of arguments is required. This simplifies writing Python modules. 12 years ago
Michael DeHaan 4cdfebc6b8 tweak config mode check to just have a default 12 years ago
Michael DeHaan 3c2eba57fd Make pep8 tests run against the library directory as well, and associated tweaks (mostly to indentation) in the library
directory.
12 years ago
Michael DeHaan 61d10cd773 Merge pull request #850 from akhayyat/virt-facts
Add openvz detection to virtualization facts, and some cleanup
12 years ago
Michael DeHaan 97768b269a Don't include local addresses in the all_ipv4/6 list 12 years ago
Ahmad Khayyat 5de5f6e86e Add openvz detection to virtualization facts, and some cleanup 12 years ago
Ahmad Khayyat 486945e7d2 Update doc string and minor cleanup 12 years ago
Ahmad Khayyat 42fedcc810 Recognize interface aliases in network facts, and add IP facts 12 years ago
Michael DeHaan 573616780b Merge pull request #838 from sfromm/issue825
Update file module to not recurse when setting ownership
12 years ago
Sébastien Bocahu ca5642ca26 Fix variable scope 12 years ago
Stephen Fromm 352f8339ea Update file module to not recurse when setting ownership
This updates set_owner_if_different() and set_group_if_different()
to not implicitly recurse when setting ownership (whether user or
group).  It drops the os.system() call and replaces it with os.chown().
Resolves issue #825.

The recursion should be explicit.  A recurse=yes|no option should be
added to the file module.
12 years ago
Michael DeHaan 046942f4cd Relative symlinks don't really work (module bug) and would be confusing anyway, better to be explicit. 12 years ago
Michael DeHaan 0802d99d95 Fix a scoping issue that was fixing some non-repoquery-installed cases 12 years ago
Michael DeHaan dfc17594de Merge branch 'yum-wo-repoquery' of https://github.com/dhozac/ansible into devel
Conflicts:
	library/yum
12 years ago
Michael DeHaan 7a7973b2e1 Merge pull request #830 from cybertoast/feature/pip_module_py2.4
Feature/pip module py2.4
12 years ago
Michael DeHaan c66f90e06b Merge pull request #828 from skvidal/devel
add backup= option to copy. makes a backup of the file on the target
12 years ago
Sundar Raman 01efd46599 Further syntax fix work on Python2.4
The `val if something else something-else` syntax does not work prior to 2.5.
12 years ago
Sundar Raman a221c9ed65 Fix syntax to work on Python2.4
The `val if something else something-else` syntax does not work prior to 2.5
12 years ago
Seth Vidal 3cedbb49d5 fix case where destination does not yet exist - no backup can be made 12 years ago
Seth Vidal 05180da537 add backup= option to copy. makes a backup of the file on the target
in a file named: $filename.YYYY-MM-DD@HH:MM~

backup=False is default
12 years ago
Seth Vidal 310c4b5eff make yum module work with list=pkgspec 12 years ago
Daniel Hokka Zakrisson d233e1e000 Allow using the yum module without repoquery
It is still required to use list=..., but the typical install and remove
won't need it.
12 years ago