mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
858dae181b
Previously Ubuntu was treated as being equivalent to Debian, but the two distributions require different behaviour in certain places. This commit does not change the behaviour of systemd on either distro but it creates a framework for changes to be introduced by later commits. The following previously meant "Target is Debian or Ubuntu". * configure option "--with-distro=debian" * C preprocessor symbol "TARGET_DEBIAN" * Automake conditional "TARGET_DEBIAN" After this commit, all of the above are redefined to mean "Target is Debian" The following are introduced to mean "Target is Ubuntu". * configure option "--with-distro=ubuntu" * C preprocessor symbol "TARGET_UBUNTU" * Automake conditional "TARGET_UBUNTU" Most code written for Debian will also be applicable to Ubuntu. An extra Automake conditional "TARGET_DEBIAN_OR_UBUNTU" is introduced to avoid duplication of code that would otherwise occur. This commit updates configure.ac, Makefile.am and distro-specific source files in line with the above definitions.
45 lines
1.6 KiB
Plaintext
45 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.
|
|
|
|
m4_ifdef(`TARGET_FEDORA', `m4_define(`GETTY', `/sbin/mingetty')')m4_dnl
|
|
m4_ifdef(`TARGET_SUSE', `m4_define(`GETTY', `/sbin/mingetty')')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_dnl
|
|
[Unit]
|
|
Description=Getty on %I
|
|
Requires=dev-%i.device
|
|
After=dev-%i.device
|
|
m4_ifdef(`TARGET_FEDORA',
|
|
After=rc-local.service
|
|
)m4_dnl
|
|
m4_ifdef(`TARGET_ARCH',
|
|
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=-GETTY %I
|
|
Restart=always
|
|
RestartSec=0
|
|
UtmpIdentifier=%I
|
|
KillMode=process-group
|
|
|
|
# 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 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
|