2020-11-09 13:23:58 +09:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
2017-11-18 17:35:03 +01:00
|
|
|
#
|
2014-05-16 20:14:23 +02:00
|
|
|
# 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.
|
|
|
|
|
|
2014-05-18 22:10:48 +02:00
|
|
|
[Unit]
|
|
|
|
|
Description=Network Name Resolution
|
|
|
|
|
Documentation=man:systemd-resolved.service(8)
|
2020-09-29 08:03:10 +02:00
|
|
|
Documentation=man:org.freedesktop.resolve1(5)
|
2024-05-28 14:37:23 +02:00
|
|
|
Documentation=https://systemd.io/WRITING_NETWORK_CONFIGURATION_MANAGERS
|
|
|
|
|
Documentation=https://systemd.io/WRITING_RESOLVER_CLIENTS
|
2020-09-29 08:03:10 +02:00
|
|
|
|
2017-12-11 18:27:49 +00:00
|
|
|
DefaultDependencies=no
|
2025-04-30 21:05:02 +02:00
|
|
|
After=systemd-sysctl.service systemd-sysusers.service
|
2023-05-25 18:13:02 +02:00
|
|
|
Before=sysinit.target network.target nss-lookup.target shutdown.target initrd-switch-root.target
|
|
|
|
|
Conflicts=shutdown.target initrd-switch-root.target
|
2025-04-30 21:05:02 +02:00
|
|
|
Wants=nss-lookup.target
|
2014-05-18 22:10:48 +02:00
|
|
|
|
|
|
|
|
[Service]
|
2017-08-09 16:15:07 +02:00
|
|
|
AmbientCapabilities=CAP_SETPCAP CAP_NET_RAW CAP_NET_BIND_SERVICE
|
2020-09-11 10:56:06 +02:00
|
|
|
BusName=org.freedesktop.resolve1
|
2018-11-12 17:19:48 +01:00
|
|
|
CapabilityBoundingSet=CAP_SETPCAP CAP_NET_RAW CAP_NET_BIND_SERVICE
|
2024-12-12 13:42:12 +01:00
|
|
|
ExecStart={{LIBEXECDIR}}/systemd-resolved
|
2018-11-12 17:19:48 +01:00
|
|
|
LockPersonality=yes
|
|
|
|
|
MemoryDenyWriteExecute=yes
|
|
|
|
|
NoNewPrivileges=yes
|
2016-08-26 13:23:27 +02:00
|
|
|
PrivateDevices=yes
|
2024-12-12 11:48:52 +00:00
|
|
|
PrivateTmp=disconnected
|
2020-04-02 21:18:11 +03:00
|
|
|
ProtectClock=yes
|
2016-08-26 13:23:27 +02:00
|
|
|
ProtectControlGroups=yes
|
2018-11-12 17:19:48 +01:00
|
|
|
ProtectHome=yes
|
2020-08-06 14:50:38 +02:00
|
|
|
ProtectKernelLogs=yes
|
2017-02-09 11:09:50 +01:00
|
|
|
ProtectKernelModules=yes
|
2018-11-12 17:19:48 +01:00
|
|
|
ProtectKernelTunables=yes
|
|
|
|
|
ProtectSystem=strict
|
|
|
|
|
Restart=always
|
|
|
|
|
RestartSec=0
|
2016-08-26 13:23:27 +02:00
|
|
|
RestrictAddressFamilies=AF_UNIX AF_NETLINK AF_INET AF_INET6
|
2018-11-12 17:19:48 +01:00
|
|
|
RestrictNamespaces=yes
|
|
|
|
|
RestrictRealtime=yes
|
2019-03-20 19:52:20 +01:00
|
|
|
RestrictSUIDSGID=yes
|
2017-08-09 16:15:07 +02:00
|
|
|
RuntimeDirectory=systemd/resolve
|
|
|
|
|
RuntimeDirectoryPreserve=yes
|
2025-04-30 21:05:02 +02:00
|
|
|
Sockets=systemd-resolved-varlink.socket systemd-resolved-monitor.socket
|
2018-11-12 17:19:48 +01:00
|
|
|
SystemCallArchitectures=native
|
|
|
|
|
SystemCallErrorNumber=EPERM
|
|
|
|
|
SystemCallFilter=@system-service
|
2024-03-08 23:02:19 +00:00
|
|
|
Type=notify-reload
|
2018-11-12 17:19:48 +01:00
|
|
|
User=systemd-resolve
|
2023-06-08 14:09:36 +02:00
|
|
|
ImportCredential=network.dns
|
|
|
|
|
ImportCredential=network.search_domains
|
2021-05-16 11:55:36 +02:00
|
|
|
{{SERVICE_WATCHDOG}}
|
2014-05-18 22:10:48 +02:00
|
|
|
|
|
|
|
|
[Install]
|
2022-02-03 12:15:00 +01:00
|
|
|
WantedBy=sysinit.target
|
2017-02-16 17:48:48 +01:00
|
|
|
Alias=dbus-org.freedesktop.resolve1.service
|
2025-04-29 15:14:32 -04:00
|
|
|
Also=systemd-resolved-varlink.socket systemd-resolved-monitor.socket
|