Gitiles
Code Review
Sign In
gerrit.mcp.mirantis.com
/
salt-formulas
/
iptables
/
refs/heads/release/2018.2.0
/
.
/
iptables
/
macro.jinja
blob: a821e23b5b8dcc2b6022321b371608cd9c7912c4 [
file
] [
log
] [
blame
]
{%-
macro cast_dict_keys
(
output
,
input
)
%}
{%-
for
key
,
value
in
input
.
items
()
%}
{%-
set
int_key
=
key
|
int
%}
{%-
do
output
.
update
({
int_key
:
value
})
%}
{%-
endfor
%}
{%-
endmacro
%}