blob: a4d11493fa94986bac44c279a11b58c958e1981b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
WorkingDirectory=/etc/openvpn
[Install]
WantedBy=multi-user.target
|