diff options
| author | jandob | 2016-03-29 19:11:10 +0200 |
|---|---|---|
| committer | jandob | 2016-03-29 19:11:10 +0200 |
| commit | 129c9438762e522f1f65d5c97e3f890bdd4f7814 (patch) | |
| tree | 7ed49c1bd3ffaf5867afcb74319320f15f343e51 /builder | |
| parent | Merge branch 'master' of git.openslx.org:openslx-ng/systemd-init (diff) | |
| download | systemd-init-129c9438762e522f1f65d5c97e3f890bdd4f7814.tar.gz systemd-init-129c9438762e522f1f65d5c97e3f890bdd4f7814.tar.xz systemd-init-129c9438762e522f1f65d5c97e3f890bdd4f7814.zip | |
fix kernel command line printing
Diffstat (limited to 'builder')
| -rwxr-xr-x | builder/dnbd3-rootfs/hooks/prepare-kernel-command-line-parameter.sh | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/builder/dnbd3-rootfs/hooks/prepare-kernel-command-line-parameter.sh b/builder/dnbd3-rootfs/hooks/prepare-kernel-command-line-parameter.sh index ba234c55..20041ecf 100755 --- a/builder/dnbd3-rootfs/hooks/prepare-kernel-command-line-parameter.sh +++ b/builder/dnbd3-rootfs/hooks/prepare-kernel-command-line-parameter.sh @@ -24,9 +24,10 @@ echo -n "$SLX_INITIAL_KERNEL_COMMAND_LINE" > \ "${writeable_proc_cmdline_path}/cmdline" logging.debug \ - '-----------------------Kernel-Command-Line:--------------------------\n' \ - "${SLX_INITIAL_KERNEL_COMMAND_LINE}\n" \ - '----------------------------------------------------------------------' + '-----------------------Kernel-Command-Line:------------------------------' +logging.debug "${SLX_INITIAL_KERNEL_COMMAND_LINE}" +logging.debug \ + '-------------------------------------------------------------------------' for parameter in $(getargs BOOTIF=); do logging.debug "PXE given boot interface $parameter" @@ -74,9 +75,11 @@ if [ -z "$(getargs slxbase=)" ]; then exit 1 fi -logging.debug '-----------------------Dracut-Kernel-Command-Line:----------------------' +logging.debug \ + '-----------------------Dracut-Kernel-Command-Line:-----------------------' logging.debug "$(logging.cat /proc/cmdline)" -logging.debug '------------------------------------------------------------------------' +logging.debug \ + '-------------------------------------------------------------------------' ) # region vim modline |
