mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
For initrd presets, we can change the default to disable services by default instead of enabling by default without breaking compat so let's do that as it makes much more sense as a default than enabling everything by default.
16 lines
613 B
Plaintext
16 lines
613 B
Plaintext
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
#
|
|
# This file is part of systemd.
|
|
#
|
|
# systemd is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU Lesser General Public License as published by
|
|
# the Free Software Foundation; either version 2.1 of the License, or
|
|
# (at your option) any later version.
|
|
|
|
# We disable everything by default because:
|
|
# - Every unnecessary service that is enabled slows down boot
|
|
# - If the initrd is built out of packages there will be always be
|
|
# unnecessary services that are pulled in that aren't necessary to
|
|
# boot the system.
|
|
disable *
|