/lib/systemd/system/networking-routes.service is in ifupdown-extra 0.28.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | [Unit]
Description=Establish global networking routes for the system
Documentation=man:route(8)
DefaultDependencies=no
After=local-fs.target network.target
Before=network.target shutdown.target
Conflicts=shutdown.target
[Install]
WantedBy=multi-user.target
WantedBy=network-online.target
[Service]
Type=oneshot
EnvironmentFile=-/etc/network/routes
ExecStart=/etc/init.d/networking-routes start
ExecStop=/etc/init.d/networking-routes stop
RemainAfterExit=true
TimeoutStartSec=5min
|