Merge pull request #4168 from nigelm/md5_filter

Added md5 as a jinja filter - returns hex digest of input
pull/3929/merge
Michael DeHaan 11 years ago
commit 7f8126a6c9

@ -22,6 +22,7 @@ import yaml
import types
import pipes
from ansible import errors
from ansible.utils import md5s
def to_nice_yaml(*a, **kw):
'''Make verbose, human readable yaml'''
@ -111,5 +112,8 @@ class FilterModule(object):
# quote string for shell usage
'quote': quote,
# md5 hex digest of string
'md5': md5s,
}

Loading…
Cancel
Save