Commit Graph

5517 Commits (c51c64409ead09f163cb011615de3d05144e2fce)
 

Author SHA1 Message Date
Peter Oliver 07815bde3b Add Solaris 11 package management
- Module pkg5 handles installing and uninstalling packages.
- Module pkg5_publisher manages repository configuration.
10 years ago
Brian Coca 2e6b94047d fixed doc bug 10 years ago
Julien Pepy 2e1b703b3c Fix composer module checkmode and change detection 10 years ago
Brian Coca 60c06b79d6 Merge pull request #129 from soeren2342/devel
Make sure portage doesn't ask for confirmation
10 years ago
Toshio Kuratomi ef8dc9955b Merge pull request #161 from lifanov/devel
fix at.py module on non-glibc systems
10 years ago
Nikolai Lifanov 8df2a4e1a7 Merge remote-tracking branch 'upstream/devel' into devel 10 years ago
Brian Coca 34fa36d38e Merge pull request #166 from acrobat/typo-fix
Fixed small typo in zabbix group docs
10 years ago
Jeroen Thora 899f1c0a0b Fixed small typo in zabbix group docs 10 years ago
Nikolai Lifanov 587f52085b Merge remote-tracking branch 'upstream/devel' into devel 10 years ago
Brian Coca 59eda8657c Merge pull request #162 from bcoca/corrected_version_added_winmods
corrected version added
10 years ago
Brian Coca 24734db807 corrected version added 10 years ago
Brian Coca 88579a7f15 Merge pull request #160 from lenaten/devel
add missed __init__.py , this fixes ansible-doc by making sure the .py documents are present
10 years ago
Nikolai Lifanov 1be1aacadf fix at.py module on non-glibc systems 10 years ago
net 33585d14a3 package file 10 years ago
Toshio Kuratomi 68368fa444 Merge pull request #156 from alxgu/zypper-fix_gpg_check
zypper: Fix gpg check option for state=latest. --no-gpg-checks is used in new and old zypper versions
10 years ago
Alexander Gubin 50a8774784 zypper: Fix gpg check option for state=latest. --no-gpg-checks is used in new and old zypper versions 10 years ago
Jonathan Mainguy d611f86e5b Addes login_port feature, similiar to how mysql_db.py works 10 years ago
Toshio Kuratomi 846eb48ea4 Merge pull request #150 from cosmopetrich/firewalld-docs
Remove default from 'permanent' and 'state' docs
10 years ago
Brian Coca de9a297a36 Merge pull request #140 from steinim/devel
Fall back to simplejson if ImportError on json
10 years ago
Cosmo Petrich 443d7683a0 Remove default from 'permanent' and 'state' docs
These fields are both required, and thus do not actually have defaults.
10 years ago
Brian Coca 108db556a0 Merge pull request #136 from bcoca/gluster_revamp
revamp of gluster volume management
10 years ago
Brian Coca fdd41fb95c Merge pull request #1 from mscherer/devel
Add a new option immediate= to immediately apply a permanent change
10 years ago
Chris Schmidt 9498d3de9c Renamd Module File 10 years ago
Chris Schmidt 226144512d Renamted module from download_artifact to maven_artifact 10 years ago
James Cammarata 84df085b2b Merge pull request #149 from acrobat/typo-patch
Small typo fix in the composer documentation
10 years ago
Jeroen Thora 4513d3d29e Small typo fix 10 years ago
Brian Coca b8071a8d5e Merge pull request #141 from bcoca/haproxy_cleanup
minor cleanup
10 years ago
Brian Coca 9f88bdb7f5 moved version added 10 years ago
Stein Inge Morisbak c4af7a1324 Removed import of json. It is already imported in the common module. 10 years ago
Brian Coca a97d1016dc minor cleanup, removing unused/redundant code, cleaned some comments, slight reformating in class to
remove kwargs
10 years ago
Brian Coca 82aaaa4152 Merge pull request #23 from ravibhure/devel
Added module haproxy, to handle enable/disable backend server with shutdown_sessions feature in haproxy.
10 years ago
Stein Inge Morisbak 5a2b80ccaa Fall back to simplejson if ImportError on json 10 years ago
Michael DeHaan 3fa7806ae5 Merge pull request #134 from bcoca/chocolatey_minor_fix
changed to use ansible standard 'name' instead of 'package'
10 years ago
Michael DeHaan 5da1984484 Merge pull request #135 from bcoca/snmp_facts_docfix
minor doc tweaks to snmp_facts
10 years ago
Ravi Bhure d4a096f7ff Recorded the changes suggested by brian coca 10 years ago
Brian Coca 6725d5188d revamp of gluster volume management
also implemented deleting a volume
10 years ago
Brian Coca b5a0d10925 changed to use ansible standard 'name' instead of 'package' 10 years ago
Brian Coca cf215dbac4 minor doc tweaks to snmp_facts 10 years ago
Ravi Bhure 44b2cdb5f2 used ansible conventions to use trigered action ==> state,
now only two states are available enabled/disabled_
get weight for backend server, is default behavior for both state,
supports set weight while enable server in lb pool
10 years ago
nmeum 926194f75d Make sure portage doesn't ask for confirmation
If EMERGE_DEFAULT_OPTS in make.conf(5) contains '--ask' then the portage
module doesn't work correctly, this commit fixes that
10 years ago
Robin Roth 7948b91bad fix local change 10 years ago
Robin Roth 76142ddb97 Allow multiple versions in rpm state
Fix bug in ansible get_package_state and get_current_version that breaks when there are multiple versions of a package installed and there is a list of packages to install.
The previous implementation used 'zip' to match requested names to installed names which fails, because rpm outputs multiple lines per package when there are multiple versions.

Testcase: Install opensuse, install multiple kernel versions (happens by update)
Before patch: calling 
zypper: state=present for name={{item}} 
with_items: 
  - kernel-desktop
  - git

leads to ansible aborting.
After the patch ansible performs as expected and makes sure both packages are present.
Also the last version number is used for further update information in this version (before if only one package name was given the oldest version number was used).
10 years ago
Toshio Kuratomi 19e688b017 Fixes to documentation 10 years ago
Ravi Bhure bcbe945a41 Instead of action [enable_server,disable_server] we prefer to use state [enabled,disabled] [FIXED]
misplaced the checkmode support (#L146) [FIXED]
no need to check if host is not set as the argument spec (#L138), it should already complain about that [FIXED]
10 years ago
Kevin Carter 99359fc4e2 Updated volume create methods for a more consistent process
The volume create methods were making an assumption on the unit
sizes being presented by the `vgdisplay` and the `lvdisplay`
commands. To correct the assumption the commands will now enforce
a unit size of "g" which will alway convert sives to gigabytes.
This was an issue brought up by @hughsaunders.
10 years ago
Ravi Bhure 78365ecf06 updated version 1.9 and
moved haproxy module to network category
10 years ago
Ravi Bhure 12ef9aaae0 Merge branch 'devel' of github.com:ansible/ansible-modules-extras into devel 10 years ago
Brian Coca 68bd8a55ae Merge pull request #99 from ogenstad/devel
Snmp module for Ansible
10 years ago
Michael Scherer 62cae242cf Add a new option immediate= to immediately apply a permanent change
Currently, either you apply the change in the configuration
of firewalld ( without permanent=True ), or you apply it live.
I most of the time want to do the 2 at the same time, ie open the
port ( so I can use the service ) and make sure it stay open on reboot.
10 years ago
ogenstad 24822322d4 1.9 10 years ago