mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
Remove deprecated matchers from compound matcher
This commit is contained in:
parent
611e62dc32
commit
0acf9a5383
@ -24,7 +24,6 @@ L List of minions ``L@minion1.example.com,minion3.domain.com or bl*.do
|
||||
I Pillar glob ``I@pdata:foobar``
|
||||
S Subnet/IP address ``S@192.168.1.0/24`` or ``S@192.168.1.100``
|
||||
R Range cluster ``R@%foo.bar``
|
||||
D Minion Data ``D@key:value``
|
||||
====== ==================== ===============================================================
|
||||
|
||||
| Matchers can be joined using boolean ``and``, ``or``, and ``not`` operators.
|
||||
|
@ -1542,12 +1542,10 @@ class Matcher(object):
|
||||
return False
|
||||
ref = {'G': 'grain',
|
||||
'P': 'grain_pcre',
|
||||
'X': 'exsel',
|
||||
'I': 'pillar',
|
||||
'L': 'list',
|
||||
'S': 'ipcidr',
|
||||
'E': 'pcre',
|
||||
'D': 'data'}
|
||||
'E': 'pcre'}
|
||||
if HAS_RANGE:
|
||||
ref['R'] = 'range'
|
||||
results = []
|
||||
|
Loading…
Reference in New Issue
Block a user