Merge pull request #4168 from nigelm/md5_filter

Added md5 as a jinja filter - returns hex digest of input
This commit is contained in:
Michael DeHaan
2013-09-23 08:21:11 -07:00

View File

@@ -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,
}