mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
6fdae8a6a4
This patch adds support for the Mageia Linux distribution: http://www.mageia.org/ Mageia is a fork of Mandriva although some divergence has already occured and thus inclusion of these changes upstream allow us to (hopefully) migrate more rapidly to the new standard approaches systemd offers. Indeed, we already use the preferred mechanism of OS identification via the /etc/os-release file rather than a distro specific variation. This patch mostly mirrors the patch added previously for Mandriva support. In addition to those original authors, this patch was mostly written by Dexter Morgan with help from Colin Guthrie and Eugeni Dodonov.
58 lines
1.6 KiB
Plaintext
58 lines
1.6 KiB
Plaintext
# 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.
|
|
|
|
[Unit]
|
|
Description=Getty on %I
|
|
BindTo=dev-%i.device
|
|
After=dev-%i.device systemd-user-sessions.service plymouth-quit-wait.service
|
|
m4_ifdef(`TARGET_FEDORA',
|
|
After=rc-local.service
|
|
)m4_dnl
|
|
m4_ifdef(`TARGET_ARCH',
|
|
After=rc-local.service
|
|
)m4_dnl
|
|
m4_ifdef(`TARGET_FRUGALWARE',
|
|
After=local.service
|
|
)m4_dnl
|
|
m4_ifdef(`TARGET_ALTLINUX',
|
|
After=rc-local.service
|
|
)m4_dnl
|
|
m4_ifdef(`TARGET_MANDRIVA',
|
|
After=rc-local.service
|
|
)m4_dnl
|
|
m4_ifdef(`TARGET_MAGEIA',
|
|
After=rc-local.service
|
|
)m4_dnl
|
|
|
|
# If additional gettys are spawned during boot then we should make
|
|
# sure that this is synchronized before getty.target, even though
|
|
# getty.target didn't actually pull it in.
|
|
Before=getty.target
|
|
|
|
[Service]
|
|
Environment=TERM=linux
|
|
ExecStart=-/sbin/agetty %I 38400
|
|
Restart=always
|
|
RestartSec=0
|
|
UtmpIdentifier=%I
|
|
TTYPath=/dev/%I
|
|
TTYReset=yes
|
|
TTYVHangup=yes
|
|
TTYVTDisallocate=yes
|
|
KillMode=process
|
|
|
|
# Unset locale for the console getty since the console has problems
|
|
# displaying some internationalized messages.
|
|
Environment=LANG= LANGUAGE= LC_CTYPE= LC_NUMERIC= LC_TIME= LC_COLLATE= LC_MONETARY= LC_MESSAGES= LC_PAPER= LC_NAME= LC_ADDRESS= LC_TELEPHONE= LC_MEASUREMENT= LC_IDENTIFICATION=
|
|
|
|
# Some login implementations ignore SIGTERM, so we send SIGHUP
|
|
# instead, to ensure that login terminates cleanly.
|
|
KillSignal=SIGHUP
|
|
|
|
[Install]
|
|
Alias=getty.target.wants/getty@tty1.service
|