summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Version bump for release 1.6.9v1.6.9release1.6.9James Cammarata2014-07-246-2/+16
|
* Smush ds removalMichael DeHaan2014-07-243-45/+10
|
* Refactoring split_args into sub-functionsJames Cammarata2014-07-241-86/+73
|
* Add another negative test for the parser logic.Michael DeHaan2014-07-242-1/+10
|
* Moar split_args testsMichael DeHaan2014-07-241-4/+23
|
* Start of unit tests for split_args function, moved split_args to utils since ↵Michael DeHaan2014-07-245-150/+206
| | | | not needed by modules (so far).
* Some notes/comment upgrades on split_args.Michael DeHaan2014-07-241-9/+55
|
* Using custom splitting function for module param countingJames Cammarata2014-07-244-8/+106
|
* Make sure 'item' variable is set when using first_available_fileJames Cammarata2014-07-241-0/+4
| | | | Fixes #8220
* Fixes for module param counting and additional shell quoting issuesJames Cammarata2014-07-242-16/+24
|
* Fixes to parsing tests to remove trailing spaceJames Cammarata2014-07-241-8/+8
|
* Add missing file.Michael DeHaan2014-07-242-1/+13
|
* Add missing role test file.Michael DeHaan2014-07-241-0/+45
|
* Add some negative tests on the same parsing infrastructure.Michael DeHaan2014-07-241-0/+3
|
* Add a lot of tests to verify parsing routines for scenarios that should ↵Michael DeHaan2014-07-244-2/+132
| | | | pass. Some changes TBD, like stripping command spaces off end of expressions.
* fix for unarchive 8257Benno Joy2014-07-241-1/+6
|
* Version bump for release 1.6.8v1.6.8James Cammarata2014-07-226-6/+20
|
* Fixing up shell quoting issuesJames Cammarata2014-07-222-9/+22
|
* 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