From f54409d8b8a8dd3e43a450be5bbd78afdcb78c25 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 11 Nov 2010 00:30:00 +0100 Subject: units: deal properly with the fact that agetty is called getty on Debian --- units/serial-getty@.service.m4 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'units/serial-getty@.service.m4') diff --git a/units/serial-getty@.service.m4 b/units/serial-getty@.service.m4 index da9bd1946b..a8610c809a 100644 --- a/units/serial-getty@.service.m4 +++ b/units/serial-getty@.service.m4 @@ -5,6 +5,13 @@ # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. +m4_ifdef(`TARGET_FEDORA', `m4_define(`GETTY', `/sbin/agetty')')m4_dnl +m4_ifdef(`TARGET_SUSE', `m4_define(`GETTY', `/sbin/agetty')')m4_dnl +m4_ifdef(`TARGET_GENTOO', `m4_define(`GETTY', `/sbin/agetty')')m4_dnl +m4_ifdef(`TARGET_ARCH', `m4_define(`GETTY', `/sbin/agetty')')m4_dnl +m4_ifdef(`TARGET_DEBIAN', `m4_define(`GETTY', `/sbin/getty')')m4_dnl +m4_ifdef(`TARGET_UBUNTU', `m4_define(`GETTY', `/sbin/getty')')m4_dnl +m4_dnl [Unit] Description=Serial Getty on %I BindTo=dev-%i.device @@ -26,7 +33,7 @@ Environment=TERM=vt100-nav m4_ifdef(`TARGET_FEDORA', ExecStartPre=-/sbin/securetty %I )m4_dnl -ExecStart=-/sbin/agetty -s %I 115200,38400,9600 +ExecStart=-GETTY -s %I 115200,38400,9600 Restart=always RestartSec=0 UtmpIdentifier=%I -- cgit v1.2.3-54-g00ecf