From b104d82ca109df98ea5bf858f0e749c7b79db946 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Tue, 2 Mar 2021 19:27:42 +0100 Subject: [PATCH 1/2] autofs: Do not install /etc/autofs.conf Install /etc/autofs.conf.template instead of /etc/autofs.conf so that we can track the file under version control. --- autofs.be0 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/autofs.be0 b/autofs.be0 index 1383a034a..4d0db1248 100755 --- a/autofs.be0 +++ b/autofs.be0 @@ -1,6 +1,6 @@ #!/usr/bin/env beesh -# BEE_VERSION autofs-5.1.3-3 +# BEE_VERSION autofs-5.1.3-4 ## this file was created by bee init and should be executed to build a ## bee-package. (Additional hints are located at the end of this file.) @@ -17,7 +17,6 @@ SRCURL[0]="https://www.kernel.org/pub/linux/daemons/autofs/v5/autofs-${PKGVERSIO #PATCHURL+=("/src/mariux/patches/autofs-5.0.8-fix-task-manager-not-getting-signaled-without-changelog.patch") PATCHURL+=("/src/mariux/patches/autofs-5.0.8-reduce-syslog-noise.patch") -PATCHURL+=("/src/mariux/patches/autofs-5.1.0-decrease-negative_timeout-value-in-default-config.patch") PATCHURL+=("/src/mariux/patches/autofs-0001-Fix-usage-of-unitialized-pointer.patch") ############################################################################### @@ -72,6 +71,7 @@ mee_install() { rm etc/init.d/autofs rmdir etc/init.d rmdir run + mv etc/autofs.conf etc/autofs.conf.template } ## by default this may be 'make install DESTDIR="${D}"' From c6a18c966588095d08a442c210992adc2e98ec34 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Tue, 2 Mar 2021 19:38:32 +0100 Subject: [PATCH 2/2] autofs: Remove sysconfig file Remove etc/sysconfig/autofs which isn't used by our autofs startup. --- autofs.be0 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autofs.be0 b/autofs.be0 index 4d0db1248..240a1a4e3 100755 --- a/autofs.be0 +++ b/autofs.be0 @@ -72,6 +72,8 @@ mee_install() { rmdir etc/init.d rmdir run mv etc/autofs.conf etc/autofs.conf.template + rm etc/sysconfig/autofs + rmdir etc/sysconfig } ## by default this may be 'make install DESTDIR="${D}"'