From: Terrance <[email protected]> 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. --- Additional discussion: https://github.com/OpenVPN/openvpn/pull/802 distro/systemd/[email protected] | 2 +- distro/systemd/[email protected] | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/distro/systemd/[email protected] b/distro/systemd/[email protected] index ae62e8c7..c32bb333 100644 --- a/distro/systemd/[email protected] +++ b/distro/systemd/[email protected] @@ -1,4 +1,4 @@ [Unit] -Description=OpenVPN tunnel for %I +Description=OpenVPN tunnel for %i After=network-online.target Wants=network-online.target diff --git a/distro/systemd/[email protected] b/distro/systemd/[email protected] index 5123e072..547f5f54 100644 --- a/distro/systemd/[email protected] +++ b/distro/systemd/[email protected] @@ -1,4 +1,4 @@ [Unit] -Description=OpenVPN service for %I +Description=OpenVPN service for %i After=network-online.target Wants=network-online.target -- 2.50.1 _______________________________________________ Openvpn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openvpn-devel
