Commit Graph

314 Commits (a9c2e597ac8e0fb339d24c108375e6cd87032d20)

Author SHA1 Message Date
Lorin Hochstein a9c2e597ac 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 487c826700 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 4ecdd17caf Merge pull request #702 from lorin/postgresql-module
Add postgresql_db and postgresql_user module.
12 years ago
Lorin Hochstein def1fa23f8 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
Stephen Fromm 1727bd3b7a 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 d55012e570 Merge pull request #704 from lorin/gitfix
git module: Don't pass rc as separate arg to fail_json
12 years ago
Lorin Hochstein 9253d89280 git module: Don't pass rc as separate arg to fail_json 12 years ago
Michael DeHaan 0c61d049a2 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 ebfd7ec7e3 Merge pull request #695 from nix85/fix_apt_mod
Standardizing the apt module
12 years ago
Mark Theunissen 7395becf3a 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 888ac86d70 Woops, missed the rest of them 12 years ago
Mark Theunissen ac23c69bcc Making the passwd parameter consistent 12 years ago
Mark Theunissen 6afe3fd497 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 daf44331c4 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 dd9e09dee6 Adding dict() for json.dumps 12 years ago
Nikhil Singh 4c8d949642 Standardizing the apt module 12 years ago
Michael DeHaan 2030f82bf2 Further standardize the yum module 12 years ago
Michael DeHaan 1584eda3f8 Merge pull request #684 from nix85/fix_yum_mod
Standardizing the yum module
12 years ago
Mark Theunissen 12979cf834 Change modules to use credentials in my.cnf if they are available 12 years ago
Stephen Fromm 40eaf282ea More cleanup in assemble module for module magic (tm) 12 years ago
Nikhil Singh b47bed9601 Standardizing the yum module 12 years ago
Michael DeHaan 772e241d1f shorten up the assemble module 12 years ago
Michael DeHaan f787cda7be Merge pull request #675 from jpmens/assemble1
convert sfromm's assemble to module-magic
12 years ago
Michael DeHaan f4a4649086 Port async_status to use the new common code. 12 years ago
Michael DeHaan 45354c6be5 Port command module over to new common code. Notice that this has to subclass AnsibleModule -- this should be the only
one that has to do that.
12 years ago
Michael DeHaan 2d1c297fb8 Merge pull request #674 from nix85/fix_facter_mod
Standardizing the module
12 years ago
Jan-Piet Mens f6fe9124b8 convert assemble to module-magic 12 years ago
Nikhil Singh 8bbcef6f13 Standardizing the module 12 years ago
Mark Theunissen 97cc259d8c Undefined variable error 12 years ago
Nikhil Singh 483f7fd625 Standardizing the mount module 12 years ago
Michael DeHaan 2cda36f7dc Merge pull request #664 from jpmens/a1
Fix file module to support = in args; remove superflous call in get_url
12 years ago
Christoph Seitz ab8a36686e Fixes locale problem with ifconfig in setup module 12 years ago
Jan-Piet Mens 628b289ab3 Fix file module to support = in args; remove superflous call in get_url 12 years ago
Michael DeHaan ec12cc4154 Save the transfer of the module file for new style modules, because we can inject the arguments into the modules.
Module consumers using the API don't have to know how this works.  base64 stuff is only there
because escaping a docstring inside a docstring was a bit of a challenge :)
12 years ago
Stephen Fromm f068bedfa1 Update user module to use new shared module code 12 years ago
Mark Theunissen 12e23a1a6c Upgrading MySQL user module to new format 12 years ago
Michael DeHaan 0b891fc8fb Tweaking daisychain internals to allow get_url to modify the path destination when downloading to a directory.
Minor module refactoring.
12 years ago
Michael DeHaan 46650cfcec Merge branch 'get_url3' of https://github.com/jpmens/ansible into devel 12 years ago
Stephen Fromm 1a9c54b1e1 Update group module to use new shared module code 12 years ago
Mark Theunissen efb60776f4 Upgrading to new shared module code 12 years ago
Michael DeHaan 9f149c9f1a imports not needed 12 years ago
Michael DeHaan d0f4358730 Port the copy module over to the new "common module" logic. 12 years ago
Jan-Piet Mens b8d7b5041b new module: get_url
get module (with new module-magic-code!)
	Usage: ansible -m get -a "url=http://xxxxxxx  dest=fileordirctory"
	all cleanups as per @mpdehaan's suggestions
	add daisychain
	added example playbook (get_url.yml) with URLencode example
12 years ago
Stephen Fromm 2a0dfba838 Skip get_ipv6_facts if socket.has_ipv6 is false 12 years ago
Stephen Fromm fd059a3df2 Fix for issue 604
Do not switch to master branch in pull()
Add --track to git checkout, when checking out a remote branch to track.
12 years ago
Michael DeHaan 70ef8e9ebb Merge pull request #637 from goozbach/git-mkdir
git mkdir causes problems with older git (can't c/o to existing directory)
12 years ago
Derek Carter f0f8eb3445 git mkdir causes problems with older git (can't checkout to existing directory) 12 years ago
Michael DeHaan b114a6075f Merge pull request #631 from sfromm/facts
Update setup module for facts derived from classes - take 2
12 years ago
Michael DeHaan d69e70db01 By defining a main function here, and including it ahead of the boilerplate insertion symbol, tracebacks are
now accurate with respect to the main function, but may include lines not in the original file.  A lot better
than before, where they were offset.
12 years ago
Stephen Fromm 0efc0bec89 Update LinuxNetwork to not use fcntl and ioctls
get_interfaces() updated to read /proc/net/dev.  This means it no
longer provides only interfaces that are up.

get_iface_hwaddr() updated to read from /sys/class/net/<iface>/address.

Added get_interface_facts() to pull in mac address and interface mtu.
Can be used later for additional interface-facts.

Added get_ipv6_facts(), which reads from /proc/net/if_inet6.

get_network_facts() renamed to get_ipv4_facts().  It still calls
ifconfig to determine ipv4 facts.
12 years ago