2013-11-07 04:25:34 +00:00
|
|
|
#!/bin/bash
|
2013-05-09 06:39:37 +00:00
|
|
|
|
|
|
|
home=$(dirname $0)
|
|
|
|
set -uex
|
|
|
|
|
2014-01-13 18:02:54 +00:00
|
|
|
DIB_INIT_SYSTEM=$(dib-init-system)
|
|
|
|
if [ "$DIB_INIT_SYSTEM" == "upstart" ]; then
|
|
|
|
install -m 0644 -o root -g root $home/ttySx.conf /etc/init/ttySx.conf
|
|
|
|
elif [ "$DIB_INIT_SYSTEM" == "systemd" ]; then
|
|
|
|
ln -s /usr/lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@ttyS0.service
|
|
|
|
ln -s /usr/lib/systemd/system/getty@.service /etc/systemd/system/getty.target.wants/getty@ttyS1.service
|
|
|
|
fi
|