/etc/cobbler/pxe/s390x_parm.template is in cobbler-common 2.4.1-0ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Stuff content into a list so we can display a condensed format later
#if $isinstance($kernel_options, $list)
#set $argList = $kernel_options
#else
#set $argList = $kernel_options.split(" ")
#end if
## =====================================
## Now write out data. Content cannot be longer than 80 characters in length,
## and must not exceed 11 lines
## =====================================
#set $output_str=""
#for $item in $argList
#set $output_str = "%s %s" % ($output_str, $item)
#if $len($output_str) >= 80
#echo "%s\n" % $output_str[0:80]
#set $output_str = $output_str[80:$len($output_str)]
#end if
#end for
#if $len($output_str) > 0
#echo "%s\n" % $output_str
#end if
|