```bash
Examining ufw/config/applications.sls of type state
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:30
ufw-app-{{method}}-{{app_name}}-{{from_addr}}:
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:32
ufw-app-{{method}}-{{app_name}}:
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:34
ufw.{{method}}:
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:35
- app: '"{{app_name}}"'
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:37
- from_addr: {{from_addr}}
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:40
- to_addr: {{to_addr}}
[206] Jinja variables should have spaces before and after: {{ var_name }}
ufw/config/applications.sls:45
- comment: '"{{comment}}"'
```
* Semi-automated using `ssf-formula` (v0.5.0)
* Fix errors shown below:
```bash
ufw-formula$ $(grep "\- yamllint" .travis.yml | sed -e "s:^\s\+-\s\(.*\):\1:")
pillar.example
1:1 warning missing document start "---" (document-start)
3:12 warning truthy value should be one of [false, true] (truthy)
7:11 warning truthy value should be one of [false, true] (truthy)
12:22 warning truthy value should be one of [false, true] (truthy)
64:13 warning truthy value should be one of [false, true] (truthy)
69:13 warning truthy value should be one of [false, true] (truthy)
77:13 warning truthy value should be one of [false, true] (truthy)
84:14 warning truthy value should be one of [false, true] (truthy)
101:16 warning truthy value should be one of [false, true] (truthy)
106:14 warning truthy value should be one of [false, true] (truthy)
110:13 warning truthy value should be one of [false, true] (truthy)
test/salt/pillar/default.sls
1:1 warning missing document start "---" (document-start)
2:12 warning truthy value should be one of [false, true] (truthy)
9:14 warning truthy value should be one of [false, true] (truthy)
12:13 warning truthy value should be one of [false, true] (truthy)
15:13 warning truthy value should be one of [false, true] (truthy)
19:13 warning truthy value should be one of [false, true] (truthy)
25:14 warning truthy value should be one of [false, true] (truthy)
29:13 warning truthy value should be one of [false, true] (truthy)
```
The "limit" and "deny" parameters have been added to both the services and
applications sections. Setting "limit: True" will use the "ufw limit" command
instead of "ufw allow". Likewise, setting "deny: True" will use the "ufw deny"
command.