chiark / gitweb /
label: use internal utility functions wher epossible
[elogind.git] / units / getty@.service.m4
1 #  This file is part of systemd.
2 #
3 #  systemd is free software; you can redistribute it and/or modify it
4 #  under the terms of the GNU General Public License as published by
5 #  the Free Software Foundation; either version 2 of the License, or
6 #  (at your option) any later version.
7
8 m4_ifdef(`TARGET_FEDORA', `m4_define(`GETTY', `/sbin/agetty 38400')')m4_dnl
9 m4_ifdef(`TARGET_SUSE', `m4_define(`GETTY', `/sbin/agetty 38400')')m4_dnl
10 m4_ifdef(`TARGET_DEBIAN', `m4_define(`GETTY', `/sbin/getty 38400')')m4_dnl
11 m4_ifdef(`TARGET_UBUNTU', `m4_define(`GETTY', `/sbin/getty 38400')')m4_dnl
12 m4_ifdef(`TARGET_GENTOO', `m4_define(`GETTY', `/sbin/agetty 38400')')m4_dnl
13 m4_ifdef(`TARGET_ARCH', `m4_define(`GETTY', `/sbin/agetty -8 38400')')m4_dnl
14 m4_dnl
15 [Unit]
16 Description=Getty on %I
17 BindTo=dev-%i.device
18 After=dev-%i.device
19 m4_ifdef(`TARGET_FEDORA',
20 After=rc-local.service
21 )m4_dnl
22 m4_ifdef(`TARGET_ARCH',
23 After=rc-local.service
24 )m4_dnl
25
26 # If additional gettys are spawned during boot then we should make
27 # sure that this is synchronized before getty.target, even though
28 # getty.target didn't actually pull it in.
29 Before=getty.target
30
31 [Service]
32 Environment=TERM=linux
33 ExecStart=-GETTY %I
34 Restart=always
35 RestartSec=0
36 UtmpIdentifier=%I
37 KillMode=process-group
38
39 # Some login implementations ignore SIGTERM, so we send SIGHUP
40 # instead, to ensure that login terminates cleanly.
41 KillSignal=SIGHUP
42
43 [Install]
44 Alias=getty.target.wants/getty@tty1.service getty.target.wants/getty@tty2.service getty.target.wants/getty@tty3.service getty.target.wants/getty@tty4.service getty.target.wants/getty@tty5.service getty.target.wants/getty@tty6.service