summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix ec2_setup task param quotingv1.6.7release1.6.7James Cammarata2014-07-211-1/+1
|
* Version bump for release 1.6.7James Cammarata2014-07-206-2/+20
|
* Security fixes:James Cammarata2014-07-208-65/+178
| | | | | | | * Strip lookup calls out of inventory variables and clean unsafe data returned from lookup plugins (CVE-2014-4966) * Make sure vars don't insert extra parameters into module args and prevent duplicate params from superseding previous params (CVE-2014-4967)
* Version bump for release 1.6.6v1.6.6release1.6.6James Cammarata2014-07-016-2/+16
|
* When parsing json from untrusted sources, remove templating tagsJames Cammarata2014-07-015-19/+41
|
* Further safe_eval fixesJames Cammarata2014-07-011-20/+13
|
* Version bump for 1.6.5v1.6.5release1.6.5James Cammarata2014-06-256-2/+16
|
* Additional fixes for safe_evalJames Cammarata2014-06-251-14/+17
|
* Version bump for 1.6.4v1.6.4release1.6.4James Cammarata2014-06-256-2/+16
|
* Assert the MOCK_CFG exists for the mock-rpm build targetJames Laska2014-06-251-1/+1
|
* Add support for rpm builds through mockJames Laska2014-06-251-1/+19
|
* Correct Makefile variable usageJames Laska2014-06-251-1/+1
|
* Updated DEB build workflowJames Laska2014-06-254-40/+101
| | | | | | | | | | | | | Updates to Makefile include: * add targets: deb-src, deb-src-upload, deb-upload * add variables to control DEB building: DEBUILD_OPTS, DPUT_OPTS, DEB_PPA, DEB_DIST, DEB_RELEASE * create deb files for all release values in DEB_DIST Several updates to packaging/debian/* * Updated control file * Whitespace/formatting of changelog Add deb-build to .gitignore
* Change safe_eval to a strict white listJames Cammarata2014-06-252-15/+28
|
* Version bump and CHANGELOG/RELEASES update for 1.6.3v1.6.3release1.6.3James Cammarata2014-06-096-5/+24
|
* Cleaning up svr4pkg commit fix for #7645James Cammarata2014-06-091-8/+8
|
* fix for svr4pkg module failure reporting, issue #7645Casey Fitzpatrick2014-06-091-3/+11
|
* Fixing mysql master replication booleanJames Cammarata2014-06-091-2/+2
| | | | Fixes #7528
* Fix issue with symlink path detectionJames Cammarata2014-06-091-1/+2
| | | | | Fixes #7627 Fixes #7664
* Fix linking issue to directories in file moduleJames Cammarata2014-06-091-1/+1
| | | | | | | The os.path.isdir() returns True for symlinks that point to directories, so we also need to check to make sure it's not a symlink too. Fixes #7657
* Fix error passing play vars to an included playbook with empty varsJames Cammarata2014-06-091-0/+4
| | | | Fixes #7658
* Fix order of merging variables for the combined cacheJames Cammarata2014-06-091-2/+2
| | | | Fixes #7598
* Removing cruft leftover from the deprecation of include+with_itemsJames Cammarata2014-06-095-26/+16
| | | | | | | Also cleaning up integration tests that had checks for the empty item attribute in certain results. Fixes #7535
* fixing problem where ansible would error out because Amazon was saying the ↵evanccopengeo2014-06-091-0/+4
| | | | group didnt exist yet (needed to wait a few more seconds for amazon to propagate correctly)
* Fix error when using os.getlogin() without a ttyJames Cammarata2014-06-091-1/+12
|
* Fix typo in CHANGE MASTER TO syntaxJosef Špak2014-06-091-1/+1
|
* Ensure there are no duplicates in the merged/intersected listsMarc Pujol2014-06-091-7/+10
|
* Merge and intersect lists without using sets.Marc Pujol2014-06-091-12/+10
| | | | | | | | Using sets for these operations is dangerous because sets cannot contain certain object types (such as lists) and their iteration order is undefined. Fixes #7596
* dont mutate inventory varsIsao Jonas2014-06-091-1/+1
|
* Check groupnames for None as well as an empty string in add_hostJames Cammarata2014-06-091-1/+1
| | | | Fixes #7585
* Correctly examine path for relative links in file moduleBrian Coca2014-06-091-4/+5
| | | | | Fixes #7515 Fixes #7537
* Support checking for su user to atomic_moveJames Cammarata2014-06-091-2/+3
| | | | Fixes #7553
* Correct issue of handlers running on all hosts incorrectlyJames Cammarata2014-06-094-9/+24
| | | | | | Also adds an integration test to catch this bug in the future. Fixes #7559
* now module searches for update-alternatives vs hardcoding itBrian Coca2014-06-091-1/+2
|
* Don't use listify_ function, when all we want to do is template variablesJames Cammarata2014-06-091-1/+5
| | | | | | | | | | | | This was causing a bug in the env module, due to the fact that we now pass variables for the module through the templating engine combined with the fact that we split-up the hostvars and setup variables. As a result, if a variable in the env lookup had the same name as the variable in Ansible, it would try and template itself over and over again until the recursion limit would be hit, at which time an empty string was returned. Fixes #7396
* Merge pull request #7527 from hlieberman/release1.6.2release1.6.2Michael DeHaan2014-05-251-1/+1
|\ | | | | Remove colon which breaks installation of 1.6.2.
| * Remove colon which breaks installation of 1.6.2.Harlan Lieberman-Berg2014-05-231-1/+1
|/ | | | | Rework the description so that it doesn't require the colon, rather than just wrapping it in quotes.
* Version bump for 1.6.2v1.6.2James Cammarata2014-05-236-3/+26
|
* Don't re-query inventory when trimming failed/dark hostsJames Cammarata2014-05-231-1/+1
| | | | | | | | | | Since the filter list contains hosts, passing that back to list_hosts() in the inventoy causes issues when the hostname is an IPv6 address (with :'s interpreted as group unions). Since we already have the list of hosts, we should not need to pass that back through inventory a second time. Fixes #7446
* Adding the capability to proxy the ssl cert checkJames Cammarata2014-05-231-3/+89
| | | | | | | | | The ssl cert check will now respect the http and https proxy environment settings. The url may also have the username/password embedded, in which case basic auth will be used to connect to the proxy server. Fixes #7413
* Make sure dwim'd relative path ends in a "/" if the original doesJames Cammarata2014-05-231-0/+1
| | | | Fixes #7296
* Ensure the validation string has %s in itjjshoe2014-05-213-0/+6
|
* Fixing absolute path calculation for file module when linkingJames Cammarata2014-05-211-1/+1
| | | | Fixes #7403
* Also set the environment variables when resetting the locale to CJames Cammarata2014-05-211-0/+2
|
* Default use_proxy to True for fetch_url()James Cammarata2014-05-212-1/+3
| | | | | | | | Also added some error handling to the fetch_url() call in the apt_repository module, so that failures to look up the PPA info are properly handled. Fixes #7322
* Reset locale to 'C' if the specified one is invalidJames Cammarata2014-05-211-0/+21
| | | | Fixes #7448
* Remove erroneous set of status_code causing a traceback in module uriJames Cammarata2014-05-211-1/+0
| | | | Fixes #7416
* docker: fix targetting images by nameMatt Bray2014-05-211-1/+1
|
* Fixed extension filtering in InventoryDirectoryKevin Bell2014-05-211-4/+3
|
* Check module_path permissions when creating ssh_wrapper for gitJames Cammarata2014-05-212-2/+22
| | | | | | | | | | If the module directory is not writable/executable to the current user (most likely because of a sudo to a non-root user), the ssh_wrapper will be created in the default location for mkstemp() calls. To facilitate the deletion of these new files, a new mechanism for cleaning up files created by the module was also added. Fixes #7375