diff options
-rwxr-xr-x | scripts/system/vyatta_update_console.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/system/vyatta_update_console.pl b/scripts/system/vyatta_update_console.pl index 387a37b3..0ee6a6e5 100755 --- a/scripts/system/vyatta_update_console.pl +++ b/scripts/system/vyatta_update_console.pl @@ -113,8 +113,8 @@ sub update_grub { while (<$grub>) { if (/^serial / ) { print {$tmp} "serial --unit=0 --speed=$speed\n"; - } elsif (/^(.* console=ttyS0),[0-9]+ (.*)$/) { - print {$tmp} "$1,$speed $2\n"; + } elsif (/^(.* console=ttyS0),[0-9]+(.*)$/) { + print {$tmp} "$1,$speed$2\n"; } else { print {$tmp} $_; } |