mirror of
https://github.com/systemd/systemd
synced 2024-11-05 18:25:39 +00:00
1a30285590
To me this is the last major basic functionality that couldn't be configured via credentials: the network. We do not invent any new format for this, but simply copy relevant creds 1:1 into /run/systemd/network/ to open up the full functionality of networkd to VM hosts.
29 lines
891 B
SYSTEMD
29 lines
891 B
SYSTEMD
# 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.
|
|
|
|
[Unit]
|
|
Description=Generate network units from Kernel command line
|
|
Documentation=man:systemd-network-generator.service(8)
|
|
|
|
DefaultDependencies=no
|
|
Before=network-pre.target systemd-udevd.service
|
|
Wants=network-pre.target
|
|
Conflicts=shutdown.target initrd-switch-root.target
|
|
Before=shutdown.target initrd-switch-root.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
RemainAfterExit=yes
|
|
ExecStart={{LIBEXECDIR}}/systemd-network-generator
|
|
ImportCredential=network.netdev.*
|
|
ImportCredential=network.link.*
|
|
ImportCredential=network.network.*
|
|
|
|
[Install]
|
|
WantedBy=sysinit.target
|