Commit Graph

640 Commits (ef7811e4d435929b938f01760a4a7053435774e2)
 

Author SHA1 Message Date
Michael DeHaan 3c86a43122 Merge pull request #922 from dsummersl/subversion
Subversion
12 years ago
Michael DeHaan d08c6031c0 Merge pull request #931 from elventear/postgresql_db
Allow change of ownership and checks for existing database
12 years ago
Michael DeHaan 7a38e57c45 Merge pull request #924 from elventear/postgresql_user
Change semantics of postgresql_user module
12 years ago
Jeroen Hoekx 5deac26a0e Add the wait_for module.
This module waits until a specific port on a given host can be connected to.
12 years ago
Dane Summers 7cb6fa0286 added force option to git - made both subversion and git default to force=true for backward compatibility with git's previous behavior 12 years ago
Dane Summers 96a6566560 tested library - fixed several test cases, added 'force' option, and removed grep requirement 12 years ago
Pepe Barbe 3c239430e4 bugfix in sql query 12 years ago
Pepe Barbe 4a9a6c81ac Check for database ownership 12 years ago
Pepe Barbe 9e275529d6 Typo 12 years ago
Pepe Barbe 511ab8697c Query for all active privileges instead
Use a different method to query for current 
privileges at the table and database level. 
This method is more robust if newer privileges 
are added in future versions and also supports the 
ALL wildcard.
12 years ago
Pepe Barbe a7e1ca6a6f Add fail_on_user option
fail_on_user option can be used to ignore silently
if the user cannot be removed because of remaining
privilege dependencies to other objects in the 
database. By default it will fail, so that this new 
behavior won't surprise unsuspecting users.
12 years ago
Pepe Barbe 384839bfe1 Initial commit of change of semantics for module
The postgresql_user module has several drawbacks:
* No granularity for privileges
* PostgreSQL semantics force working on one
  database at time, at least for Tables. Which
  means that a single call can't remove all the 
  privileges for a user, and a user can't be
  removed until all the privileges are removed, 
  forcing a module failure with no way to 
  work around the issue.

Changes:
* Added the ability to specify granular privileges
  for database and tables within the database
* Report if user was removed, and add an option to 
  disable failing if user is not removed.
12 years ago
Dag Wieërs a32ae49bb6 Handle special files just like normal files
As discussed in #923
12 years ago
Dane Summers 648f740b95 removed logger, removed superfluous mkdir 12 years ago
Dane Summers fc9fd48843 added TODO for test scenarios to add 12 years ago
Michael DeHaan 1af0a4c303 Adds a thirsty=yes|no to the get_url module, such that if downloading a large file from the internet you can decide
whether to download it every time or not -- will replace only on change, or decide to not download.  The default
is thirsty=no which will not download every time by default.
12 years ago
Tim Bielawa 23ec079661 Fix setup module explosion when a route is empty. Closes #909 12 years ago
Michael DeHaan e87697d602 Fix invalid usage or fail_json in apt module 12 years ago
Michael DeHaan 20d90d4c00 Apt module should accept 'absent', and 'present' like the yum module does. 12 years ago
Michael DeHaan 1330e66709 tweak service module pattern= logic so ./hacking/test-module does not give false positives 12 years ago
Michael DeHaan 260c2819be Merge pull request #902 from sfromm/issue719
Add pattern option to service module
12 years ago
Michael DeHaan 6f1f044566 Merge pull request #901 from dhozac/setup-ip
Work with tun and p2p interfaces
12 years ago
Michael DeHaan b9880e38b8 Merge pull request #900 from lorin/pip-venv-bug
Retrieve pip path after creating virtualenv
12 years ago
Michael DeHaan 7ec431fa57 Merge pull request #898 from elventear/postgresql_user_py24
Fixes for postgresql_user to make it work with postgresql defaults and under Python 2.4
12 years ago
Stephen Fromm 32cb95e424 Add pattern option to service module
Adds ability to check service status based on pattern.  The pattern
is a simple string.  If a pattern is provided, the output of ps is
checked first.
12 years ago
Daniel Hokka Zakrisson d1568b1ebb Work with tun and p2p interfaces 12 years ago
Lorin Hochstein 449ab0635b Retrieve pip path after creating virtualenv
Retrieve the pip path after creating a non-existent virtualenv.
Prevents the problem of using the wrong pip if virtualenv doesn't
exist yet.
12 years ago
Pepe Barbe 35e27fe1b2 Syntax change to make module compatible with Python 2.4 12 years ago
Lorin Hochstein ac672f8331 Return both stdout and stderr on pip failures.
pip failure message sometimes (always?) go to standard out. Return
both standard out and standard error when there's a failure.
12 years ago
Michael DeHaan 51e85b4bde Make a more logical error when the command/shell module is used with no arguments. 12 years ago
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