mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Merge branch '2016.3' into '2016.11'
No conflicts.
This commit is contained in:
commit
c6b5fd3715
2 changed files with 9 additions and 0 deletions
|
@ -530,6 +530,7 @@ class MinionBase(object):
|
|||
# we need a list of master URIs to fire calls back to.
|
||||
for master in opts['local_masters']:
|
||||
opts['master'] = master
|
||||
opts.update(prep_ip_port(opts))
|
||||
opts['master_uri_list'].append(resolve_dns(opts)['master_uri'])
|
||||
|
||||
while True:
|
||||
|
|
|
@ -187,6 +187,14 @@ class CkMinions(object):
|
|||
else:
|
||||
self.acc = 'accepted'
|
||||
|
||||
def _check_nodegroup_minions(self, expr, greedy): # pylint: disable=unused-argument
|
||||
'''
|
||||
Return minions found by looking at nodegroups
|
||||
'''
|
||||
return self._check_compound_minions(nodegroup_comp(expr, self.opts['nodegroups']),
|
||||
DEFAULT_TARGET_DELIM,
|
||||
greedy)
|
||||
|
||||
def _check_glob_minions(self, expr, greedy): # pylint: disable=unused-argument
|
||||
'''
|
||||
Return the minions found by looking via globs
|
||||
|
|
Loading…
Add table
Reference in a new issue