From 2709b42dc4fa904d6103c30a18ba27df2ed84bc7 Mon Sep 17 00:00:00 2001 From: Arne Fitzenreiter Date: Tue, 4 Apr 2017 19:14:31 +0200 Subject: [PATCH 1/3] mpd: mpd needs opus libs Signed-off-by: Arne Fitzenreiter Signed-off-by: Michael Tremer --- lfs/mpd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lfs/mpd b/lfs/mpd index 3213b27f6..4134b71e8 100644 --- a/lfs/mpd +++ b/lfs/mpd @@ -34,7 +34,7 @@ TARGET = $(DIR_INFO)/$(THISAPP) PROG = mpd PAK_VER = 15 -DEPS = "alsa faad2 ffmpeg-libs flac lame libmad libshout libogg libid3tag libvorbis" +DEPS = "alsa faad2 ffmpeg-libs flac lame libmad libshout libogg libid3tag libvorbis opus" ############################################################################### # Top-level Rules From ba2247a4b27afc5ae6985a61c65e20dda1a73454 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 4 Apr 2017 18:59:44 +0100 Subject: [PATCH 2/3] apache only supports MaxClients up to 256 Signed-off-by: Michael Tremer --- config/httpd/server-tuning.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/httpd/server-tuning.conf b/config/httpd/server-tuning.conf index 8f1eae5a2..90410186d 100644 --- a/config/httpd/server-tuning.conf +++ b/config/httpd/server-tuning.conf @@ -20,7 +20,7 @@ KeepAliveTimeout 15 MinSpareServers 1 MaxSpareServers 10 StartServers 2 -MaxClients 1000 +MaxClients 256 # # The following directives modify normal HTTP response behavior to From be3d3959d2e7ee03caf40e37993d6a815f8829bf Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Tue, 4 Apr 2017 19:08:34 +0100 Subject: [PATCH 3/3] openssh: Remove deprecated configuration options This was used for SSH version 1 which is not supported any more Signed-off-by: Michael Tremer --- config/rootfiles/core/110/update.sh | 3 +++ lfs/openssh | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/config/rootfiles/core/110/update.sh b/config/rootfiles/core/110/update.sh index 84e0ddf14..2011d4d9d 100644 --- a/config/rootfiles/core/110/update.sh +++ b/config/rootfiles/core/110/update.sh @@ -44,6 +44,9 @@ ldconfig # Update Language cache /usr/local/bin/update-lang-cache +# Remove deprecated options +sed -e "/^RSAAuthentication/d" -i /etc/ssh/sshd_config + # Start services /etc/init.d/unbound start /etc/init.d/sshd restart diff --git a/lfs/openssh b/lfs/openssh index 005e4dffa..56ac55a96 100644 --- a/lfs/openssh +++ b/lfs/openssh @@ -80,7 +80,6 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) sed -i -e 's/^#\?Port .*$$/Port 222/' \ -e 's/^#\?Protocol .*$$/Protocol 2/' \ -e 's/^#\?LoginGraceTime .*$$/LoginGraceTime 30s/' \ - -e 's/^#\?RSAAuthentication .*$$/RSAAuthentication yes/' \ -e 's/^#\?PubkeyAuthentication .*$$/PubkeyAuthentication yes/' \ -e 's/^#\?PasswordAuthentication .*$$/PasswordAuthentication yes/' \ -e 's/^#\?MaxStartups .*$$/MaxStartups 5/' \