%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /lib/python2.7/site-packages/salt/matchers/
Upload File :
Create Path :
Current File : //lib/python2.7/site-packages/salt/matchers/pcre_match.py

# -*- 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']))

Zerion Mini Shell 1.0