2559933f8f
Change-Id: Id58e53a592b5f4601b893ba6c828bad07942b07b Signed-off-by: Matthew Thode <mthode@mthode.org>
18 lines
514 B
Bash
Executable File
18 lines
514 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ${DIB_DEBUG_TRACE:-1} -gt 0 ]; then
|
|
set -x
|
|
fi
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
SCRIPTDIR=$(dirname $0)
|
|
|
|
if [ "$DIB_INIT_SYSTEM" == "upstart" ]; then
|
|
install -m 0644 -o root -g root ${SCRIPTDIR}/ttySx.conf /etc/init/ttySx.conf
|
|
elif [ "$DIB_INIT_SYSTEM" == "systemd" ]; then
|
|
install -D -g root -o root -m 0644 ${SCRIPTDIR}/serial-console-udev.rules /etc/udev/rules.d/99-serial-console.rules
|
|
elif [ "$DIB_INIT_SYSTEM" == "openrc" ]; then
|
|
sed -r 's/^#(.*ttyS[0,1].*$)/\1/' -i /etc/inittab
|
|
fi
|