On 2/28/12 12:39 PM, Robert Jacobson wrote:
I also tried creating a new kickstart file (again, in the web UI), by copying and pasting the kickstart file that was automatically generated. However, when I try that, I get a server error (lots of debug output not shown here) in /cobbler_web/ksfile/save.
Cheetah.Parse.ParseError: Error in the Python code which Cheetah generated for this template: [...]
narrowed it down to code like this in the kickstart. e.g. This generates the parser error:
IFNAME=$(foo|ls 3)
but using backquotes instead of $() seems to work:
IFNAME=`foo|ls 3`