From 2cf06c647ef80ac891eb3b6adf36ef87d7efe2ef Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Sun, 26 Feb 2017 17:14:37 +0100 Subject: [PATCH] system: default is the default --- src/etc/inc/system.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/etc/inc/system.inc b/src/etc/inc/system.inc index 5f28657cc..f793ca42e 100644 --- a/src/etc/inc/system.inc +++ b/src/etc/inc/system.inc @@ -1712,7 +1712,7 @@ function system_login_configure($verbose = false) $new_boot_config['comconsole_speed'] = null; $new_boot_config['boot_multicons'] = null; $new_boot_config['boot_serial'] = null; - $new_boot_config['kern.vty'] = '"vt"'; + $new_boot_config['kern.vty'] = null; $new_boot_config['console'] = null; $console_types = system_console_types(); @@ -1796,7 +1796,6 @@ function system_login_configure($verbose = false) foreach (array('ttyu0', 'ttyu1', 'ttyu2', 'ttyu3') as $serialport) { if (strpos($tty, $serialport) === 0) { fwrite($fd, "{$serialport}\t\"/usr/libexec/getty {$serial_type}\"\tvt100\t{$on_off_secure_u}\n"); - /* skip to next line in outer loop */ continue 2; } }