From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: Re: [PATCH 2/3] OpenVPN: Move the OpenSSL configuration file out of /var/ipfire
Date: Wed, 05 Jun 2024 13:26:16 +0200 [thread overview]
Message-ID: <ab8fc19c-87e2-44f6-8a45-fd96dd2c789c@ipfire.org> (raw)
In-Reply-To: <20240418213654.3321580-2-michael.tremer@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 3452 bytes --]
Hi Michael,
Here is my feedback on these three patches and the issues I found when I tried to use them.
I had to manually apply them so there is also the possibility that I made a typo somewhere.
On 18/04/2024 23:36, Michael Tremer wrote:
> We should not have any configuration files that we share in this place,
> therefore this patch is moving it into /usr/share/openvpn where we
> should be able to update it without any issues.
>
> Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
> ---
> config/rootfiles/common/openvpn | 2 +-
> html/cgi-bin/ovpnmain.cgi | 2 +-
> lfs/openvpn | 6 ++++++
> 3 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/config/rootfiles/common/openvpn b/config/rootfiles/common/openvpn
> index d9848a579..c0d49bfad 100644
> --- a/config/rootfiles/common/openvpn
> +++ b/config/rootfiles/common/openvpn
These changes were no problem.
> @@ -25,6 +25,7 @@ usr/sbin/openvpn-authenticator
> #usr/share/doc/openvpn/openvpn.8.html
> #usr/share/man/man5/openvpn-examples.5
> #usr/share/man/man8/openvpn.8
> +usr/share/openvpn/openssl.cnf
> var/ipfire/ovpn/ca
> var/ipfire/ovpn/caconfig
> var/ipfire/ovpn/ccd
> @@ -35,7 +36,6 @@ var/ipfire/ovpn/certs/serial
> var/ipfire/ovpn/crls
> var/ipfire/ovpn/n2nconf
> #var/ipfire/ovpn/openssl
> -var/ipfire/ovpn/openssl/ovpn.cnf
> var/ipfire/ovpn/openvpn-authenticator
> var/ipfire/ovpn/ovpn-leases.db
> var/ipfire/ovpn/ovpnconfig
> diff --git a/html/cgi-bin/ovpnmain.cgi b/html/cgi-bin/ovpnmain.cgi
> index 9b8ff5aa5..ed80fef7d 100755
> --- a/html/cgi-bin/ovpnmain.cgi
> +++ b/html/cgi-bin/ovpnmain.cgi
Also this change no problem.
> @@ -54,7 +54,7 @@ my %mainsettings = ();
> &General::readhash("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \%color);
>
> # Use a custom OpenSSL configuration file for all operations
> -$ENV["OPENSSL_CONF"] = "${General::swroot}/ovpn/ca/cacert.pem";
> +$ENV["OPENSSL_CONF"] = "/usr/share/openvpn/openssl.cnf";
>
> ###
> ### Initialize variables
> diff --git a/lfs/openvpn b/lfs/openvpn
> index b71b4ccc9..0704aa438 100644
> --- a/lfs/openvpn
> +++ b/lfs/openvpn
This change refused to build as it said the directory removal was for a non empty directory. When I looked at it I believe that it needed to be different.
> @@ -101,6 +101,12 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
> chown root:root /etc/fcron.daily/openvpn-crl-updater
> chmod 750 /etc/fcron.daily/openvpn-crl-updater
>
> + # Move the OpenSSL configuration file out of /var/ipfire
> + mkdir -pv /usr/share/openvpn
> + mv -v /var/ipfire/ovpn/openssl/ovpn.cnf \
> + /usr/share/openvpn/
> + rmdir -v /usr/share/openvpn
> +
The above lines I changed to
+ # Move the OpenSSL configuration file out of /var/ipfire
+ mkdir -pv /usr/share/openvpn
+ mv -v /var/ipfire/ovpn/openssl/ovpn.cnf \
+ /usr/share/openvpn/openssl.cnf
+ rmdir -v /var/ipfire/ovpn/openssl/
+
with my changes in the last two lines.
When I changed just the last line to start with then the openvpn lfs built but then later on in the cdrom stage it complained about openssl.cnf not being found, hence I also then added the change to the one before last line.
Regards,
Adolf.
> # Install authenticator
> install -v -m 755 $(DIR_SRC)/config/ovpn/openvpn-authenticator \
> /usr/sbin/openvpn-authenticator
next prev parent reply other threads:[~2024-06-05 11:26 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-18 21:36 [PATCH 1/3] ovpnmain.cgi: Define OpenSSL configuration globally Michael Tremer
2024-04-18 21:36 ` [PATCH 2/3] OpenVPN: Move the OpenSSL configuration file out of /var/ipfire Michael Tremer
2024-06-05 11:26 ` Adolf Belka [this message]
2024-06-05 11:33 ` Adolf Belka
2024-06-05 11:52 ` Adolf Belka
2024-06-07 8:22 ` Adolf Belka
2024-06-07 16:01 ` [PATCH] " Michael Tremer
2024-06-08 8:40 ` Adolf Belka
2024-06-08 10:14 ` Michael Tremer
2024-06-08 10:43 ` Adolf Belka
2024-06-08 11:00 ` Adolf Belka
2024-06-08 11:16 ` Adolf Belka
2024-06-09 7:58 ` Adolf Belka
2024-06-10 16:02 ` Michael Tremer
2024-06-11 9:09 ` Adolf Belka
2024-06-07 16:03 ` [PATCH 2/3] " Michael Tremer
2024-06-07 16:24 ` Adolf Belka
2024-06-07 19:46 ` Adolf Belka
2024-04-18 21:36 ` [PATCH 3/3] openvpn-crl-updater: Update for the changed configuration file Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=ab8fc19c-87e2-44f6-8a45-fd96dd2c789c@ipfire.org \
--to=adolf.belka@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox