From: Christoph Schug <[email protected]> The systemd unit files for both client and server were referencing outdated documentation as they were hard-coded to the OpenVPN 2.4.x release branch.
Change-Id: Iee289aa5df9ee0e9a03c0dc562e45dd39836e794 Signed-off-by: Christoph Schug <[email protected]> Acked-by: Frank Lichtenheld <[email protected]> --- distro/systemd/Makefile.am | 5 ++++- distro/systemd/[email protected] | 2 +- distro/systemd/[email protected] | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/distro/systemd/Makefile.am b/distro/systemd/Makefile.am index 7e8f4753..d1c903f2 100644 --- a/distro/systemd/Makefile.am +++ b/distro/systemd/Makefile.am @@ -9,7 +9,10 @@ # %.service: %.service.in Makefile - $(AM_V_GEN)sed -e 's|\@sbindir\@|$(sbindir)|' \ + $(AM_V_GEN)sed \ + -e 's|\@OPENVPN_VERSION_MAJOR\@|$(OPENVPN_VERSION_MAJOR)|g' \ + -e 's|\@OPENVPN_VERSION_MINOR\@|$(OPENVPN_VERSION_MINOR)|g' \ + -e 's|\@sbindir\@|$(sbindir)|g' \ $< > [email protected] && mv [email protected] $@ EXTRA_DIST = \ diff --git a/distro/systemd/[email protected] b/distro/systemd/[email protected] index 159fb4dc..15c82fad 100644 --- a/distro/systemd/[email protected] +++ b/distro/systemd/[email protected] @@ -3,7 +3,7 @@ Description=OpenVPN tunnel for %I After=syslog.target network-online.target Wants=network-online.target Documentation=man:openvpn(8) -Documentation=https://community.openvpn.net/openvpn/wiki/Openvpn24ManPage +Documentation=https://openvpn.net/community-resources/reference-manual-for-openvpn-@OPENVPN_VERSION_MAJOR@-@OPENVPN_VERSION_MINOR@/ Documentation=https://community.openvpn.net/openvpn/wiki/HOWTO [Service] diff --git a/distro/systemd/[email protected] b/distro/systemd/[email protected] index 6e8e7d94..b26d976b 100644 --- a/distro/systemd/[email protected] +++ b/distro/systemd/[email protected] @@ -3,7 +3,7 @@ Description=OpenVPN service for %I After=syslog.target network-online.target Wants=network-online.target Documentation=man:openvpn(8) -Documentation=https://community.openvpn.net/openvpn/wiki/Openvpn24ManPage +Documentation=https://openvpn.net/community-resources/reference-manual-for-openvpn-@OPENVPN_VERSION_MAJOR@-@OPENVPN_VERSION_MINOR@/ Documentation=https://community.openvpn.net/openvpn/wiki/HOWTO [Service] -- 2.34.1 _______________________________________________ Openvpn-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openvpn-devel
