2010-05-17 06:34:36 +07:00
|
|
|
# This file is part of systemd.
|
|
|
|
#
|
|
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
|
2010-05-17 07:17:47 +07:00
|
|
|
m4_ifdef(`TARGET_FEDORA', `m4_define(`GETTY', `/sbin/mingetty')')m4_dnl
|
2010-05-20 22:55:42 +07:00
|
|
|
m4_ifdef(`TARGET_SUSE', `m4_define(`GETTY', `/sbin/mingetty')')m4_dnl
|
2010-05-17 07:17:47 +07:00
|
|
|
m4_ifdef(`TARGET_DEBIAN', `m4_define(`GETTY', `/sbin/getty 38400')')m4_dnl
|
2010-05-17 16:49:58 +07:00
|
|
|
m4_ifdef(`TARGET_GENTOO', `m4_define(`GETTY', `/sbin/agetty 38400')')m4_dnl
|
2010-05-17 07:17:47 +07:00
|
|
|
m4_dnl
|
2010-05-17 06:34:36 +07:00
|
|
|
[Unit]
|
|
|
|
Description=Getty on %I
|
|
|
|
Before=getty.target
|
|
|
|
After=basic.target
|
2010-05-18 08:08:35 +07:00
|
|
|
Conflicts=shutdown.target
|
2010-05-17 06:34:36 +07:00
|
|
|
|
|
|
|
[Service]
|
2010-06-02 00:49:13 +07:00
|
|
|
Environment=TERM=linux
|
2010-05-17 06:34:36 +07:00
|
|
|
Type=simple
|
|
|
|
ExecStart=GETTY %I
|
2010-05-18 08:08:18 +07:00
|
|
|
Restart=restart-always
|
|
|
|
RestartSec=0
|
2010-06-02 00:49:13 +07:00
|
|
|
KillMode=process-group
|