2013-11-07 04:25:34 +00:00
|
|
|
#!/bin/bash
|
2013-05-09 06:39:37 +00:00
|
|
|
set -uex
|
2014-03-19 20:21:43 +00:00
|
|
|
SCRIPTDIR=$(dirname $0)
|
2013-05-09 06:39:37 +00:00
|
|
|
|
2014-01-13 18:02:54 +00:00
|
|
|
DIB_INIT_SYSTEM=$(dib-init-system)
|
|
|
|
if [ "$DIB_INIT_SYSTEM" == "upstart" ]; then
|
2014-03-19 20:21:43 +00:00
|
|
|
install -m 0644 -o root -g root ${SCRIPTDIR}/ttySx.conf /etc/init/ttySx.conf
|
2014-01-13 18:02:54 +00:00
|
|
|
elif [ "$DIB_INIT_SYSTEM" == "systemd" ]; then
|
2014-03-19 20:21:43 +00:00
|
|
|
install -D -g root -o root -m 0644 ${SCRIPTDIR}/serial-console-udev.rules /etc/udev/rules.d/99-serial-console.rules
|
2014-01-13 18:02:54 +00:00
|
|
|
fi
|