FS#11152 - Log messages don't have carriage returns
Attached to Project:
Release Engineering
Opened by Sergey Samokhin (Myav) - Friday, 08 August 2008, 21:17 GMT
Last edited by Gerhard Brauer (GerBra) - Tuesday, 27 January 2009, 12:34 GMT
Opened by Sergey Samokhin (Myav) - Friday, 08 August 2008, 21:17 GMT
Last edited by Gerhard Brauer (GerBra) - Tuesday, 27 January 2009, 12:34 GMT
|
Details
Description:
All log messages, written to /dev/tty5 by quickinst/setup looks like they don't have carriage return symbols at the end (This only appears if there is no user logged into /dev/tty5). To fix this you can use the following: LOG=/dev/tty5 TTYPREFS=$(stty -F "$LOG" -g) # Backup settings stty -F "$LOG" opost onlcr # after this all log messages will be fine formatted # <INSTALLATION STEPS> stty -F "$LOG" $TTYPREFS # Restore setting |
This task depends upon
Closed by Gerhard Brauer (GerBra)
Tuesday, 27 January 2009, 12:34 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in current archlinux-installer
Tuesday, 27 January 2009, 12:34 GMT
Reason for closing: Fixed
Additional comments about closing: Fixed in current archlinux-installer
this should fix this issue, right?