From f54409d8b8a8dd3e43a450be5bbd78afdcb78c25 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 11 Nov 2010 00:30:00 +0100 Subject: [PATCH] units: deal properly with the fact that agetty is called getty on Debian --- units/getty@.service.m4 | 14 +++++++------- units/serial-getty@.service.m4 | 9 ++++++++- 2 files changed, 15 insertions(+), 8 deletions(-) diff --git a/units/getty@.service.m4 b/units/getty@.service.m4 index b71e7f4ed..24247be7a 100644 --- a/units/getty@.service.m4 +++ b/units/getty@.service.m4 @@ -5,12 +5,12 @@ # 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 38400')')m4_dnl -m4_ifdef(`TARGET_SUSE', `m4_define(`GETTY', `/sbin/agetty 38400')')m4_dnl -m4_ifdef(`TARGET_DEBIAN', `m4_define(`GETTY', `/sbin/getty 38400')')m4_dnl -m4_ifdef(`TARGET_UBUNTU', `m4_define(`GETTY', `/sbin/getty 38400')')m4_dnl -m4_ifdef(`TARGET_GENTOO', `m4_define(`GETTY', `/sbin/agetty 38400')')m4_dnl -m4_ifdef(`TARGET_ARCH', `m4_define(`GETTY', `/sbin/agetty -8 38400')')m4_dnl +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=Getty on %I @@ -30,7 +30,7 @@ Before=getty.target [Service] Environment=TERM=linux -ExecStart=-GETTY %I +ExecStart=-GETTY %I 38400 Restart=always RestartSec=0 UtmpIdentifier=%I diff --git a/units/serial-getty@.service.m4 b/units/serial-getty@.service.m4 index da9bd1946..a8610c809 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 -- 2.30.2