Re: [PATCH] run-parts: permit dot in file name

2021-05-13 Thread Ján Sáreník
If dot is the first character of file name, file is ignored. Thanks tito! See https://gist.github.com/andyshinn/3ae01fa13cb64c9d36e7#gistcomment-2044506 To test: mkdir /tmp/testrp printf "#!/bin/sh\necho test\n" > /tmp/testrp/test.sh chmod a+x /tmp/testrp/* busybox run-parts

Re: [PATCH] run-parts: permit dot in file name

2021-05-13 Thread tito
On Thu, 13 May 2021 11:01:09 +0200 Ján Sáreník wrote: > See > https://gist.github.com/andyshinn/3ae01fa13cb64c9d36e7#gistcomment-2044506 > --- debianutils/run_parts.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c >

[PATCH] run-parts: permit dot later in file name

2021-05-13 Thread Ján Sáreník
If dot is the first character of file name, file is ignored. Thanks tito! See https://gist.github.com/andyshinn/3ae01fa13cb64c9d36e7#gistcomment-2044506 To test: mkdir /tmp/testrp printf "#!/bin/sh\necho test\n" > /tmp/testrp/test.sh chmod a+x /tmp/testrp/* busybox run-parts

Re: [PATCH] use SOURCE_DATE_EPOCH for timestamp if available

2021-05-13 Thread Ariadne Conill
Hello, On Thu, 13 May 2021, Paul Spooren wrote: The SOURCE_DATE_EPOCH is an effort of the Reproducible Builds organization to make timestamps/build dates in compiled tools deterministic over several repetitive builds. Busybox shows by default the build date timestamp which changes whenever

[PATCH] run-parts: permit dot in file name

2021-05-13 Thread Ján Sáreník
See https://gist.github.com/andyshinn/3ae01fa13cb64c9d36e7#gistcomment-2044506 --- debianutils/run_parts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debianutils/run_parts.c b/debianutils/run_parts.c index 585a4b58f..d2a7f4a08 100644 --- a/debianutils/run_parts.c +++