41f9b0d3cf
In order to get a proper unit test suits, we need to change the separator from the "dot" to "double-semicolons". The "." is a reserved character in YAML for hashes. In puppet world, we commonly use "::". Unit tests don't work if we let the "dot" separator, and apparently it's an intended outcome with that kind of syntax. Fact it's working in the deploy process is kind of black magic (see the tripleo::haproxy::service_endpoints resource for example). And the "dot" creates something weird, as all other resources are using the standard double-semicolon. Change-Id: If53d632ab458b0c04a8b7211194c18ebc8978d23 Closes-Bug: 1737086
11 lines
362 B
YAML
11 lines
362 B
YAML
---
|
|
features:
|
|
- |
|
|
Adds support for standard puppet separator. The "." separator does
|
|
not work in puppet-rpsec, so we can't get proper unit tests on the
|
|
firewall service_rules definition.
|
|
fixes:
|
|
- Partly fixes `bug 1737086
|
|
<https://bugs.launchpad.net/tripleo/+bug/1737086>`__ in oder to get unit
|
|
tests on firewall service_rules definition
|