]>
Commit | Line | Data |
---|---|---|
60f067b4 JS |
1 | # This file is part of systemd. |
2 | # | |
3 | # systemd is free software; you can redistribute it and/or modify it | |
4 | # under the terms of the GNU Lesser General Public License as published by | |
5 | # the Free Software Foundation; either version 2.1 of the License, or | |
6 | # (at your option) any later version. | |
7 | ||
8 | [Unit] | |
9 | Description=Network Service | |
10 | Documentation=man:systemd-networkd.service(8) | |
e842803a | 11 | ConditionCapability=CAP_NET_ADMIN |
60f067b4 | 12 | DefaultDependencies=no |
5eef597e MP |
13 | # dbus.service can be dropped once on kdbus, and systemd-udevd.service can be |
14 | # dropped once tuntap is moved to netlink | |
15 | After=systemd-udevd.service dbus.service network-pre.target systemd-sysusers.service | |
e842803a MB |
16 | Before=network.target multi-user.target shutdown.target |
17 | Conflicts=shutdown.target | |
60f067b4 | 18 | Wants=network.target |
60f067b4 JS |
19 | |
20 | [Service] | |
21 | Type=notify | |
22 | Restart=always | |
23 | RestartSec=0 | |
24 | ExecStart=@rootlibexecdir@/systemd-networkd | |
25 | CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE CAP_NET_BROADCAST CAP_NET_RAW CAP_SETUID CAP_SETGID CAP_SETPCAP CAP_CHOWN CAP_DAC_OVERRIDE CAP_FOWNER | |
26 | ProtectSystem=full | |
27 | ProtectHome=yes | |
28 | WatchdogSec=1min | |
29 | ||
30 | [Install] | |
60f067b4 | 31 | WantedBy=multi-user.target |