Commit Graph

354 Commits (dcff6ec4d6f310d9fe9f959faeb8f841d3d681e4)
 

Author SHA1 Message Date
Michael DeHaan dcff6ec4d6 Merge pull request #732 from willthames/fix_git_fail_json
Fixes for git module when it fails.
12 years ago
Michael DeHaan 92ab23d0da Merge pull request #733 from willthames/copy_to_directory
Allow copy dest argument to be a directory
12 years ago
Michael DeHaan db6201de79 Merge pull request #735 from nix85/fix_ohai_mod
Changed funtion name to get_ohai_data
12 years ago
Petros Moisiadis 6767accc2d added extra arguments for database creation
mysql_db: added 'encoding' and 'collation' args
postgresql_db: added 'owner', 'template' and 'encoding' args
12 years ago
Nikhil Singh 51a8aaf494 Changed funtion name to get_ohai_data 12 years ago
u348095 f3d7bee8e1 Allow copy dest argument to be a directory
Could have used shutil.copy rather than shutil.copyfile, but this
implementation preserves the md5 comparison to avoid unnecessary copies
12 years ago
u348095 f0931b5960 Fixes for git module when it fails.
* module.fail_json *must* have msg argument
Using http://github.com/ rather than git://github.com/ as it gets through more
firewalls
12 years ago
Michael DeHaan 4782bc1949 Port the file module over to the new common code infrastructure + cleanup some redundant imports since the module code already imports those things. 12 years ago
Michael DeHaan dd1072a6e2 Porting the virt module to new module core. 12 years ago
Michael DeHaan 9019f4f292 remove unneeded imports 12 years ago
Michael DeHaan 0b909b103d Port setup module to use the common module base 12 years ago
Michael DeHaan 2105418b73 Port the ohai module over, while this is actually *longer* now, not transferring the args file makes this much
faster.
12 years ago
Michael DeHaan 004c21c913 Convert authorized_key modules to use new common code + misc style things 12 years ago
Michael DeHaan c450fd7478 Merge pull request #730 from marktheunissen/mysql_change_params
Changing the parameter names to be consistent, and adding root user
12 years ago
Mark Theunissen f0a9902c25 Changing the parameter names to be consistent, and adding root user default with empty password, as per mysql standard 12 years ago
Michael DeHaan 07880e6301 Merge pull request #727 from sfromm/git
Git module ported to use module magic
12 years ago
Michael DeHaan 615d180bc8 Merge pull request #723 from skvidal/devel
fix trace-creating error in apt module - also make the default setting a...
12 years ago
Seth Vidal b909b0b603 new patch - adds a 'boolean' function to the module_common class and cleans up
the apt module to use it
12 years ago
Seth Vidal b69ae999ce fix trace-creating error in apt module - also make the default setting actualy work 12 years ago
Petros Moisiadis 218a63f58f added a 'chdir' argument to the command module
the 'chdir' argument changes the current working directory to the
fullpath supplied as its value, before the execution of the command.
12 years ago
Stephen Fromm f2c0fd3941 Update git module to use module magic and other changes
Convert git module to module magic.
Drop cruft no longer needed.
Standardize indent to 4 spaces in methods switchLocalBranch, reset,
clone, and get_version.
Update is_local_branch to also handle '* branch' format.
Add is_current branch method()
Update pull() method to use is_current_branch()
12 years ago
Lorin Hochstein ac02b85aad Use standard argument names in PostgreSQL modules
passwd -> password
loginpass -> login_password
loginuser -> login_user
loginhost -> login_host

Add an example playbook that shows how to use the modules.
12 years ago
Lorin Hochstein 481a1916e0 Fix typo in apt error message: update-cache -> update_cache
The apt parameter changed from update-cache to update_cache, but
the error message still mentioned update-cache
12 years ago
Michael DeHaan b7c8b3458b Further service module tweaks 12 years ago
Michael DeHaan 4e0ca30014 Service tweaks WIP 12 years ago
Nikhil Singh f24c75ce58 Standardizing the module 12 years ago
Mark Theunissen 12b7b2750c Fixes for apt module 12 years ago
Michael DeHaan 948e357766 Tweak alias consistency a bit. 'package' has never been documented, but since it works, make it work in both places.
'name' is the preferred form.  Similarly, take 'name' for the 'guest' argument to the 'virt' module.
12 years ago
Michael DeHaan 069f370bb4 Merge pull request #702 from lorin/postgresql-module
Add postgresql_db and postgresql_user module.
12 years ago
Michael DeHaan d6d59d8976 Merge pull request #704 from lorin/gitfix
git module: Don't pass rc as separate arg to fail_json
12 years ago
Lorin Hochstein b56927874a git module: Don't pass rc as separate arg to fail_json 12 years ago
Michael DeHaan 95e553e197 Merge pull request #690 from marktheunissen/mysql_default_password
Change modules to use credentials in my.cnf if they are available
12 years ago
Michael DeHaan d284ef2554 Merge pull request #695 from nix85/fix_apt_mod
Standardizing the apt module
12 years ago
Lorin Hochstein ed9227f406 Add postgresql_db and postgresql_user module.
These modules are based on the mysql_db and mysql_user modules.

Currently, the postgresql_user module can only grant all permissions
on a database, fine-grained access has not been implemented yet.
12 years ago
Mark Theunissen 7a3f64d4d7 Check file exists instead of relying on the exception. Leave the exception catch in, in case the file is deleted or some other issue crops up 12 years ago
Mark Theunissen 812711d530 Woops, missed the rest of them 12 years ago
Mark Theunissen b51d6d9fca Making the passwd parameter consistent 12 years ago
Mark Theunissen 894e4ff78a Changing to read from a file pointer instead so that an exception is thrown if the file doesn't exist 12 years ago
Nikhil Singh 8d283f8194 Code review changes
1. Passing the module to the various functions so that they can use module.fail_json and module.exit_json methods inside.
2. Because of point 1, install and remove methods do not return anything. Instead, they use the module functions itself.
3. Move the import statement (for apt and apt_pkg) inside main function so on import error, we can use module.fail_json to print the error.
12 years ago
Nikhil Singh 4d6b3713a7 Adding dict() for json.dumps 12 years ago
Nikhil Singh 096022acb2 Standardizing the apt module 12 years ago
Stephen Fromm 1165866ecb Update git module to handle branches better
This drops the branch option.  The version option is overloaded
to mean either a sha1, branch, or tag.  This also adds the option
'remote' which defaults to 'origin'.
clone() was simplified by removing the checkout operation.  That
happens later when switch_version() is called.

Added the methods get_branches(), is_remote_branch(), and
is_local_branch().  get_branches() returns an array listing all
of the branches for the git repository.  is_remote_branch() checks
whether the arguments supplied correspond to a remote branch.
Similarly, is_local_branch() checks for a local branch.

The pull() method now checks to see if it is on the desired branch.
If not, it checks out the requested branch and then does a pull.
This should keep issue #604 still fixed.

switch_version(), formerly switchver(), looks to see if it is
checking out a branch.  If a branch, it checks it out with the --track
option.  This type of checkout was in pull() before.

Updated pull, clone, and switch_version to return (rc, out, err).
12 years ago
Michael DeHaan 1fe021f7bb Further standardize the yum module 12 years ago
Michael DeHaan 3e8ee7cbf0 Merge pull request #684 from nix85/fix_yum_mod
Standardizing the yum module
12 years ago
Mark Theunissen 5ab81692d7 Change modules to use credentials in my.cnf if they are available 12 years ago
Stephen Fromm 6b6fb383a1 More cleanup in assemble module for module magic (tm) 12 years ago
Nikhil Singh f483d1c3f3 Standardizing the yum module 12 years ago
Michael DeHaan 99ff761d3e shorten up the assemble module 12 years ago
Michael DeHaan 2553219131 Merge pull request #675 from jpmens/assemble1
convert sfromm's assemble to module-magic
12 years ago
Michael DeHaan aae41c0d46 Port async_status to use the new common code. 12 years ago