blob: e1d49a8d714461bf68c4bec7e54501b40b246451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# This service is actually a systemd target,
# but we are using a service since targets cannot be reloaded.
[Unit]
Description=OpenVPN service
After=network.target
[Service]
Type=oneshot
RemainAfterExit=yes
ExecStart=/bin/true
ExecStop=/bin/true
WorkingDirectory=/etc/openvpn
[Install]
WantedBy=multi-user.target
|