mirror of
https://github.com/systemd/systemd.git
synced 2026-08-11 17:45:59 +00:00
Otherwise, it introduces cyclic dependencies:
```
systemd[1]: sockets.target: Found ordering cycle:
systemd-networkd-resolve-hook.socket/start after network-pre.target/start after
iptables.service/start after basic.target/start after sockets.target/start -
after systemd-networkd-resolve-hook.socket
systemd[1]: sockets.target: Job systemd-networkd-resolve-hook.socket/start deleted
to break ordering cycle starting with sockets.target/start
```
Follow-up for 37adb410a2.
Fixes #42353.
(cherry picked from commit 20572a8938)
(cherry picked from commit 26c0d2d61c)
28 lines
776 B
SYSTEMD
28 lines
776 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=Network Management Resolve Hook Socket
|
|
Documentation=man:systemd-networkd.service(8)
|
|
ConditionCapability=CAP_NET_ADMIN
|
|
DefaultDependencies=no
|
|
After=network-pre.target
|
|
Before=shutdown.target
|
|
Conflicts=shutdown.target
|
|
|
|
[Socket]
|
|
ListenStream=/run/systemd/resolve.hook/io.systemd.Network
|
|
FileDescriptorName=resolve-hook
|
|
SocketMode=0666
|
|
Service=systemd-networkd.service
|
|
RemoveOnStop=yes
|
|
|
|
[Install]
|
|
WantedBy=sockets.target
|