Openbach installation fails due to a syntax error in externals_jobs/stable_jobs/transport/socat/files/socat.yml.
At line 80 and 92, there are colons(':') embedded in the value of description. YAML uses colon to differentiate a key from its value in a key-value pair. Embedding a colon inside the value create confusion. One should either
put the value inside quotation marks, e.g. description: "Alternativelly, a size to create a file from (e.g.: 3G)"
or
remove the colon from the value, e.g. description: Alternativelly, a size to create a file from (e.g. 3G)
Openbach installation fails due to a syntax error in
externals_jobs/stable_jobs/transport/socat/files/socat.yml
.At line 80 and 92, there are colons(':') embedded in the value of
description
. YAML uses colon to differentiate a key from its value in a key-value pair. Embedding a colon inside the value create confusion. One should eitherdescription: "Alternativelly, a size to create a file from (e.g.: 3G)"
ordescription: Alternativelly, a size to create a file from (e.g. 3G)