16 lines
277 B
SYSTEMD
16 lines
277 B
SYSTEMD
|
[Unit]
|
||
|
Description=Load static arp entries
|
||
|
ConditionPathExists=/etc/ethers
|
||
|
DefaultDependencies=no
|
||
|
After=shutdown.target
|
||
|
Wants=network.target
|
||
|
Before=network.target
|
||
|
|
||
|
[Service]
|
||
|
Type=oneshot
|
||
|
ExecStart=/sbin/arp -f /etc/ethers
|
||
|
RemainAfterExit=yes
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=network.target
|