Commit graph

505 commits

Author SHA1 Message Date
Tim Bielawa
7d5b965b32 Nagios is executable now 2012-08-27 20:01:06 -04:00
Tim Bielawa
7e7d6ee7e8 Fix copying that special character 2012-08-27 11:55:38 -04:00
Tim Bielawa
7e5ab54b7f In-line docs. 2012-08-27 11:39:52 -04:00
Tim Bielawa
9a14871cc4 Now reading from a config file actually works. 2012-08-27 11:30:13 -04:00
Tim Bielawa
c486930ca8 Services iterate correctly now
Cleaned up return methods
2012-08-27 11:08:16 -04:00
Tim Bielawa
d9139020e9 Groundwork for nagios module. 2012-08-27 04:11:59 -04:00
Florian Diebold
8b19fc0ef9 Remove ternary operator to fix python 2.4 compatibility. 2012-08-26 00:16:58 +02:00
Florian Diebold
fa2a65588d Support systemd in the service module.
Most of it worked already, except for the enable parameter, because it
tried to use chkconfig which only sees SysV services. First look for
systemctl and use that if it exists.
2012-08-25 22:26:34 +02:00
Michael DeHaan
801afc4a6b Merge pull request #937 from jhoekx/wait-state
Add a state parameter to the wait_for module.
2012-08-24 16:46:41 -07:00
Michael DeHaan
0c4647c798 Merge pull request #938 from skvidal/devel
fix up local_nvra and fix for a missing localinstall rpm file.
2012-08-24 16:46:06 -07:00
Maxim Burgerhout
f9410c94d7 Add working CPU model fact for some ARM devices
Works on Sheevaplug, probably works on Rasberry Pi as well
2012-08-24 23:11:06 +02:00
Jeroen Hoekx
ac0ee3d006 wait_for: remove restarted, add delay, rename name to host, make port required. 2012-08-24 20:58:05 +02:00
Jeroen Hoekx
79fffdae87 Change wait_for return message to be machine readable. 2012-08-24 20:47:55 +02:00
Seth Vidal
d9319848b0 fix up local_nvra 2012-08-24 13:51:07 -04:00
Jeroen Hoekx
0323d887df Add a state parameter to the wait_for module.
This takes started, stopped and restarted.

Started returns when connecting is possible.
Stopped when connecting is not possible.
Restarted first waits for connecting to be impossible and returns when it is
possible again.
2012-08-24 19:08:45 +02:00
Michael DeHaan
3c86a43122 Merge pull request #922 from dsummersl/subversion
Subversion
2012-08-23 18:43:29 -07:00
Michael DeHaan
d08c6031c0 Merge pull request #931 from elventear/postgresql_db
Allow change of ownership and checks for existing database
2012-08-23 18:41:15 -07:00
Michael DeHaan
7a38e57c45 Merge pull request #924 from elventear/postgresql_user
Change semantics of postgresql_user module
2012-08-23 18:40:45 -07:00
Jeroen Hoekx
5deac26a0e Add the wait_for module.
This module waits until a specific port on a given host can be connected to.
2012-08-23 19:41:26 +02:00
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 2012-08-23 00:07:14 -04:00
Dane Summers
96a6566560 tested library - fixed several test cases, added 'force' option, and removed grep requirement 2012-08-22 23:06:03 -04:00
Pepe Barbe
3c239430e4 bugfix in sql query 2012-08-22 13:34:24 -05:00
Pepe Barbe
4a9a6c81ac Check for database ownership 2012-08-22 12:20:51 -05:00
Pepe Barbe
9e275529d6 Typo 2012-08-22 12:19:55 -05:00
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.
2012-08-22 10:04:58 -05:00
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.
2012-08-22 10:04:58 -05:00
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.
2012-08-22 10:04:57 -05:00
Dag Wieërs
a32ae49bb6 Handle special files just like normal files
As discussed in #923
2012-08-21 23:48:18 +02:00
Dane Summers
648f740b95 removed logger, removed superfluous mkdir 2012-08-21 16:10:17 -04:00
Dane Summers
fc9fd48843 added TODO for test scenarios to add 2012-08-21 13:59:39 -04:00
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.
2012-08-20 18:39:37 -04:00
Tim Bielawa
23ec079661 Fix setup module explosion when a route is empty. Closes #909 2012-08-19 21:19:07 -04:00
Michael DeHaan
e87697d602 Fix invalid usage or fail_json in apt module 2012-08-18 19:43:45 -04:00
Michael DeHaan
20d90d4c00 Apt module should accept 'absent', and 'present' like the yum module does. 2012-08-18 18:38:10 -04:00
Michael DeHaan
1330e66709 tweak service module pattern= logic so ./hacking/test-module does not give false positives 2012-08-17 20:26:22 -04:00
Michael DeHaan
260c2819be Merge pull request #902 from sfromm/issue719
Add pattern option to service module
2012-08-17 17:17:32 -07:00
Michael DeHaan
6f1f044566 Merge pull request #901 from dhozac/setup-ip
Work with tun and p2p interfaces
2012-08-17 17:10:59 -07:00
Michael DeHaan
b9880e38b8 Merge pull request #900 from lorin/pip-venv-bug
Retrieve pip path after creating virtualenv
2012-08-17 17:10:35 -07:00
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
2012-08-17 17:09:35 -07:00
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.
2012-08-17 14:00:01 -07:00
Daniel Hokka Zakrisson
d1568b1ebb Work with tun and p2p interfaces 2012-08-17 22:08:04 +02:00
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.
2012-08-17 14:38:49 -04:00
Pepe Barbe
35e27fe1b2 Syntax change to make module compatible with Python 2.4 2012-08-17 10:37:02 -05:00
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.
2012-08-17 11:32:47 -04:00
Michael DeHaan
51e85b4bde Make a more logical error when the command/shell module is used with no arguments. 2012-08-16 21:40:52 -04:00
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.
2012-08-15 19:22:05 -04:00
Dane Summers
d5482f1320 support for subversion repositories 2012-08-15 09:04:17 -04:00
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.
2012-08-14 23:31:13 -04:00
Michael DeHaan
e3ffe74c33 meaningless whitespace changes 2012-08-14 19:33:11 -04:00
Michael DeHaan
ffcd959e15 Can use fail JSON here, remove debug statement 2012-08-14 19:29:09 -04:00