saltstack/salt

View on GitHub
salt/matchers/pcre_match.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- coding: utf-8 -*-
'''
This is the default pcre matcher.
'''
from __future__ import absolute_import, print_function, unicode_literals

import re


def match(tgt, opts=None):
    '''
    Returns true if the passed pcre regex matches
    '''
    if not opts:
        return bool(re.match(tgt, __opts__['id']))
    else:
        return bool(re.match(tgt, opts['id']))