Add Jinja2 filter 'quote' to quote string for shell usage

This commit is contained in:
Stoned Elipot 2013-07-08 00:37:23 +02:00
parent b2d881a899
commit 247322bb16

View file

@ -20,6 +20,7 @@ import json
import os.path
import yaml
import types
import pipes
from ansible import errors
def to_nice_yaml(*a, **kw):
@ -61,6 +62,10 @@ def bool(a):
else:
return False
def quote(a):
''' return its argument quoted for shell usage '''
return pipes.quote(a)
class FilterModule(object):
''' Ansible core jinja2 filters '''
@ -93,5 +98,8 @@ class FilterModule(object):
# value as boolean
'bool': bool,
# quote string for shell usage
'quote': quote,
}