Comment 0 for bug 1735317

Revision history for this message
Joshua Powers (powersj) wrote :

In the documentation there are examples of YAML definitions that are not valid YAML syntax. Take for example:

 addresses: [192.168.14.2/24, 2001:1::1/64]

This will error with:

(<unknown>): found unexpected ':' while scanning a plain scalar at line 1 column 31

This is because the IPv6 address as a ':' and it is not escaped. Putting quotes around the IPv6 address or avoiding the one line list format would be best.

This occurs again in the nameservers example with:

      addresses: [8.8.8.8, FEDC::1]