summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rw-r--r--scripts/system/vyatta_update_console.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/system/vyatta_update_console.pl b/scripts/system/vyatta_update_console.pl
index 84cf7488..a6c08916 100644
--- a/scripts/system/vyatta_update_console.pl
+++ b/scripts/system/vyatta_update_console.pl
@@ -38,7 +38,7 @@ sub update_inittab {
or die "Can't open $TMPTAB";
# Clone original inittab but remove all references to serial lines
- print {$tmp} grep { ~ /^T/ } <$inittab>;
+ print {$tmp} grep { ! /^T/ } <$inittab>;
close $inittab;
my $config = new Vyatta::Config;
@@ -49,7 +49,7 @@ sub update_inittab {
my $speed = $config->returnValue("$tty speed");
$speed = 9600 unless $speed;
- print {$tmp} "T$id:23:respawn:/sbin/getty $speed $tty";
+ print {$tmp} "T$id:23:respawn:/sbin/getty $speed $tty\n";
++$id;
}
close $tmp;