Skip to content

Commit 8854550

Browse files
Terrancecron2
authored andcommitted
Update systemd service name param to match command
The service name displays `%I` which invokes systemd's path mangling (notably, converting `-` to `/`), suggesting you need to provide an encoded parameter (via e.g. `systemd-escape`), but the start command itself uses `%i` which doesn't do the conversion. This updates the service name to match the start command. Signed-off-by: Terrance <git@terrance.allofti.me> Acked-by: Frank Lichtenheld <frank@lichtenheld.com> Message-Id: <20250729180014.11550-2-sourceforge@terrance.allofti.me> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg32423.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
1 parent 264fe91 commit 8854550

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

distro/systemd/openvpn-client@.service.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=OpenVPN tunnel for %I
2+
Description=OpenVPN tunnel for %i
33
After=network-online.target
44
Wants=network-online.target
55
Documentation=man:openvpn(8)

distro/systemd/openvpn-server@.service.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Unit]
2-
Description=OpenVPN service for %I
2+
Description=OpenVPN service for %i
33
After=network-online.target
44
Wants=network-online.target
55
Documentation=man:openvpn(8)

0 commit comments

Comments
 (0)