blob: a3b5c8b1d1e93a86c4f2b88a684f29e7874f5225 [file] [log] [blame]
Pau Espin Pedrol7e0b2dd2020-03-10 11:46:39 +01001== Troubleshooting
2
3=== Format: YAML, and its Drawbacks
4
5The general configuration format used is YAML. The stock python YAML parser
6does have several drawbacks: too many complex possibilities and alternative
7ways of formatting a configuration, but at the time of writing seems to be the
8only widely used configuration format that offers a simple and human readable
9formatting as well as nested structuring. It is recommended to use only the
10exact YAML subset seen in this manual in case the osmo-gsm-tester should move
11to a less bloated parser in the future.
12
13Careful: if a configuration item consists of digits and starts with a zero, you
14need to quote it, or it may be interpreted as an octal notation integer! Please
15avoid using the octal notation on purpose, it is not provided intentionally.