aboutsummaryrefslogtreecommitdiffstats
path: root/init/serial.conf
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2012-08-06 15:18:23 -0400
committerBill Nottingham <notting@redhat.com>2012-08-06 15:18:23 -0400
commitd85174edb7389f670705595804b48aee0278ed2f (patch)
tree0cba6c19ef0420ec21bb56c0fe962d13ee3bee4f /init/serial.conf
parent164d1ede7161233a2a2fe6e4cf413b44a08923e4 (diff)
downloadinitscripts-d85174edb7389f670705595804b48aee0278ed2f.tar
initscripts-d85174edb7389f670705595804b48aee0278ed2f.tar.gz
initscripts-d85174edb7389f670705595804b48aee0278ed2f.tar.bz2
initscripts-d85174edb7389f670705595804b48aee0278ed2f.tar.xz
initscripts-d85174edb7389f670705595804b48aee0278ed2f.zip
Initial removal of support for non-systemd systems.
Diffstat (limited to 'init/serial.conf')
-rw-r--r--init/serial.conf30
1 files changed, 0 insertions, 30 deletions
diff --git a/init/serial.conf b/init/serial.conf
deleted file mode 100644
index dcf7df43..00000000
--- a/init/serial.conf
+++ /dev/null
@@ -1,30 +0,0 @@
-# Automatically start a configured serial console
-#
-# How this works:
-#
-# On boot, a udev helper examines /dev/console. If a serial console is the
-# primary console (last console on the commandline in grub), the event
-# 'fedora.serial-console-available <port name> <speed>' is emitted, which
-# triggers this script. It waits for the runlevel to finish, ensures
-# the proper port is in /etc/securetty, and starts the getty.
-#
-# If your serial console is not the primary console, or you want a getty
-# on serial even if it's not the console, create your own event e.g.
-# /etc/init/ttyS0.conf with content:
-# # ttyS0 - agetty
-# #
-# # This service maintains a agetty on ttyS0.
-#
-# stop on runlevel [S016]
-# start on runlevel [23]
-#
-# respawn
-# exec agetty -h -L -w /dev/ttyS0 115200 vt102
-
-start on fedora.serial-console-available DEV=* and stopped rc RUNLEVEL=[2345]
-stop on runlevel [S016]
-
-instance $DEV
-respawn
-pre-start exec /sbin/securetty $DEV
-exec /sbin/agetty /dev/$DEV $SPEED vt100-nav