rallytime
2ad07634d9
Test clean up
2017-01-10 11:35:48 -07:00
Mike Place
682e81b423
Merge pull request #38646 from cloudflare/HIPCHAT-ENGINE
...
Various improvements for the hipchat engine
2017-01-10 11:03:33 -07:00
Mike Place
07a11b81d0
Remove trailing whitespace
2017-01-10 10:49:56 -07:00
Mike Place
7b850d472d
Merge pull request #38647 from gtmanfred/nova
...
Allow novaclient to use keystoneauth1 sessions for authentication
2017-01-10 10:48:25 -07:00
Mike Place
383768d838
Merge pull request #38650 from rallytime/remove-ubuntu-ppa-docs
...
Remove the installation instructions for out-of-date community ppa
2017-01-10 10:47:45 -07:00
Clint Armstrong
f62393b864
pep8
2017-01-10 12:27:17 -05:00
Clint Armstrong
c8613243a1
change documentation
2017-01-10 12:24:41 -05:00
Clint Armstrong
9a0abde9ac
expose passphrase functionality to state
2017-01-10 12:18:16 -05:00
Clint Armstrong
e47a93d496
add passphrase to execution module
2017-01-10 12:17:46 -05:00
Mike Place
08246dce47
Merge pull request #38653 from OrlandoArcapix/issue31606-add_preempible_gce
...
Added preemptible flag to gce.py - see issue #31606
2017-01-10 10:00:35 -07:00
Mike Place
7d9f56e3b5
Merge pull request #38657 from DSRCorporation/bugs/38087_syndic_event_format_fix
...
Publish the 'data' field content for Syndic evets
2017-01-10 09:59:33 -07:00
Mike Place
83987511fd
Merge pull request #38649 from Ch3LL/test_apply_template
...
fix unit.modules.file_test
2017-01-10 09:44:45 -07:00
Joseph Hall
aee40648ec
Add a sane cache default for cloud
2017-01-10 09:27:06 -07:00
Joseph Hall
c9e01a36e7
Add a sane cache default for minions
2017-01-10 09:26:29 -07:00
Joseph Hall
4073c91584
Turn None into an empty string (for minion matching)
2017-01-10 08:48:53 -07:00
Dmitry Kuzmenko
594c33f396
Publish the 'data' field content for Syndic evets
...
instead of the entire event.
2017-01-10 17:22:01 +03:00
Clint Armstrong
a4d6598f1e
preserve detailed change reports
2017-01-10 08:30:12 -05:00
OrlandoArcapix
15d8c8d06b
Added preemptible flag to gce.py - see issue #31606
2017-01-10 09:32:22 +00:00
rallytime
830c03cec6
Don't lose the set reference for ec2 securitygroup ids
...
Fixes #38521
2017-01-09 18:22:16 -07:00
rallytime
30429b2e44
Remove the installation instructions for out-of-date community ppa
...
These packages are not being updated and it is causing confusion.
Ubuntu packages should be installed with the instructions on
repo.saltstack.com.
2017-01-09 17:13:50 -07:00
rallytime
fd2ee7db30
Add some simple unit tests for salt.config.api_config function
...
This will help prevent regressions in this area as discussed in
PR #38527 .
2017-01-09 16:44:48 -07:00
rallytime
3d2fefc83b
Make sure the pidfile and log_file values are overriden by api opts
2017-01-09 16:09:03 -07:00
Ch3LL
47f8b68e0b
fix unit.modules.file_test
2017-01-09 15:01:52 -07:00
rallytime
e8309a6bbf
Add release notes for 2015.8.13
2017-01-09 14:25:31 -07:00
Nicole Thomas
f881f366b7
Merge pull request #20 from rallytime/2015.8.12_follow_up-batch-tests
...
Clean up tests and docs for batch execution
2017-01-09 13:55:26 -07:00
Daniel Wallace
5be9b60851
add documentation about using keystoneauth for v3
2017-01-09 14:07:25 -06:00
Clint Armstrong
d0ad251778
combine private key and cert management
2017-01-09 14:09:20 -05:00
Mircea Ulinic
1d32f4f5d8
Various improvements for the hipchat engine
...
- allow api_url & api_key (duplicate for token), in order to be
consistent with the hipchat module and state,
ref: https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.hipchat.html
- wait_time: interval between consecutive polls of the channel
(previously hardcoded to 5 seconds, which remains the default)
- max_rooms: max number of rooms to look into
(previously hardcoded to 1000, which is still the default value)
2017-01-09 19:07:49 +00:00
rallytime
7a668e9749
Merge branch '2016.3' into '2016.11'
...
Conflicts:
- salt/modules/pillar.py
2017-01-09 11:59:43 -07:00
rallytime
d4f8f4ca7a
Merge branch '2016.11' into 'develop'
...
No conflicts.
2017-01-09 11:57:28 -07:00
Mike Place
037fcaab57
Move to getfullargspec() for py3 in vsphere module
2017-01-09 11:50:03 -07:00
rallytime
34282322c0
Clean up tests and docs for batch execution
...
Batch execution was removed from NetapiClient and Saltnado in
previous commits. This change is a follow up that removes related
test cases and doc references.
2017-01-09 11:29:34 -07:00
Clint Armstrong
3d1474d911
cross call file.managed to get permissions options
2017-01-09 12:14:17 -05:00
Mircea Ulinic
8f13f63880
Import napalm_base instead of napalm
2017-01-09 15:55:56 +00:00
Mircea Ulinic
599f62acd1
Statuspage state eggs
2017-01-09 15:51:57 +00:00
Loren Gordon
14666138b9
Sends pass-through params to state module
...
When using the state.orchestrate module, salt.state gathers several
parameters into the `cmd_kw['kwarg']` key, which are then handled
by the `saltutil.cmd` function. This works fine.
When using the state.orchestrate module on a masterless minion,
salt.state calls the state module directly, rather than saltutil.cmd.
The state module does not know about the `kwarg` key, so was not
processing all parameters passed through orchestration.
This patch pulls the extra params from the `cmd_kw['kwarg']` key
and moves them directly into the `cmd_kw` dict, so the state module
gets them as normal parameters.
Fixes #38631
2017-01-09 07:33:38 -05:00
Mike Place
4dd22f54d0
Merge pull request #38623 from mikelodder7/develop
...
Added new execution modules. Update to salt-minion
2017-01-06 18:58:47 -07:00
Mike Place
b07fc4ae3b
Fix invalid syntax and add python future
2017-01-06 15:36:34 -07:00
Mike Place
5498f11554
Single quotes and python future
2017-01-06 15:34:10 -07:00
Mike Place
007fa7906d
Python future
2017-01-06 15:27:41 -07:00
Mike Place
b931c98588
Python future
2017-01-06 15:27:06 -07:00
Mike Place
d30155e770
Double-quotes -> single-quotes
...
Per style guide
2017-01-06 15:26:33 -07:00
Mike Place
674bf01868
Python future
2017-01-06 15:24:28 -07:00
Mike Place
0a86b6bba1
Python future
2017-01-06 15:23:36 -07:00
Mike Place
cf34252664
Python future
2017-01-06 15:22:33 -07:00
Mike Place
d67f6937d7
Merge pull request #38627 from cachedout/pr-38476
...
Pr 38476
2017-01-06 15:05:45 -07:00
Mike Place
2a423ffedd
Add changes to raetkey
2017-01-06 15:04:54 -07:00
Mike Place
b13cd1370f
Merge pull request #38610 from yue9944882/2016.11
...
Fix #38595 - Unexpected error log from redis retuner in master's log
2017-01-06 14:47:21 -07:00
Mike Place
956602244d
Merge pull request #36759 from msiebeneicher/improvement/fix_log_output_for_json_and_yaml
...
Fix log output for `--output=yaml`
2017-01-06 14:44:53 -07:00
C. R. Oldham
179d385003
Merge pull request #38406 from alex-zel/fix-eauth-groups-permissions
...
Fix eauth error with openLDAP/389 directory server groups
2017-01-06 14:40:29 -07:00