From: Adolf Belka <adolf.belka@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH] ppp: Fix definition of directory for pid files
Date: Tue, 11 Jun 2024 17:11:50 +0200 [thread overview]
Message-ID: <20240611151150.127838-1-adolf.belka@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 2911 bytes --]
- When ppp was updated from version 2.5.0 to e1266c7 I missed that a new configure option
was introduced. This is --with-runtime-dir=DIR.
- If this option is used then the run time directory for the pid files is defined by that
DIR entry. If the option is not used then the pid directory is fixed as /var/run/pppd/
- Even if the --runstatedir=DIR option is used then it is ignored if the
--with-runtime-dir=DIR option is used or not used even though both effectively deal
with the same aspect.
- Some users in the forum had noticed that they had log messages saying that pid files
could not be created because the files or directories did not exist. The pid files
were being tried to be stored in /var/run/pppd/ but the pppd directory did not exist.
- This patch submission adds the --with-runtime-dir=/var/run option to the ppp configure
command. This basically makes ppp act the same as it used to do previously with version
2.5.0 and earlier.
- Changing IPFire to use /var/run/pppd/ is not a good idea as then there are several
locations in IPFire that specify the pid directory location to /var/run/ as hard coded
path. All of these locations would need to be identified and changed.
- Leaving IPFire to use /var/run means that only the ppp configure command needs to be
modified.
- I hope that @adamgibbo and @markadewwet will be able to test out this change in CU187
Testing when it is accepted. Those two users have got the pid error messages.
- Even if the ppp pid file can not be stored ppp will still successfully start. However
the likelihood is that stoppinf ppp will not work as would be expected. This patch
ensures that ppp will be able to store its pid files asa required whyen starting up.
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
lfs/ppp | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/lfs/ppp b/lfs/ppp
index a16859002..9290a7c41 100644
--- a/lfs/ppp
+++ b/lfs/ppp
@@ -72,7 +72,7 @@ $(subst %,%_BLAKE2,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
- cd $(DIR_APP) && ./autogen.sh
+ cd $(DIR_APP) && autoreconf -vfi
cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/ppp/ppp-2.5.0-1-we-don-t-want-to-accidentally-leak-fds.patch
cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/ppp/ppp-e1266c7-2-everywhere-O_CLOEXEC-harder.patch
cd $(DIR_APP) && patch -Np0 -i $(DIR_SRC)/src/patches/ppp/ppp-2.5.0-3-everywhere-use-SOCK_CLOEXEC-when-creating-socket.patch
@@ -84,6 +84,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
--sysconfdir=/etc \
--with-logfile-dir=/var/log \
--localstatedir=/var \
+ --with-runtime-dir=/var/run \
cc="gcc" \
cflags="$(CFLAGS)"
cd $(DIR_APP) && make $(MAKETUNING)
--
2.45.2
reply other threads:[~2024-06-11 15:11 UTC|newest]
Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
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=20240611151150.127838-1-adolf.belka@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