public inbox for ipfire-scm@lists.ipfire.org
 help / color / mirror / Atom feed
From: git@ipfire.org
To: ipfire-scm@lists.ipfire.org
Subject: [git.ipfire.org] IPFire 2.x development tree branch, next, updated. 1b4d5ad9af5d3603331f31aef5dca67833808694
Date: Wed, 12 Oct 2016 22:42:32 +0100	[thread overview]
Message-ID: <20161012214233.0B8E41078E81@git01.ipfire.org> (raw)

[-- Attachment #1: Type: text/plain, Size: 3972 bytes --]

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "IPFire 2.x development tree".

The branch, next has been updated
       via  1b4d5ad9af5d3603331f31aef5dca67833808694 (commit)
       via  b06187f5b65b6911ea90f0daa20ec0a50682070f (commit)
      from  693928d781bee3151d5108a6f68a464202e78eeb (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 1b4d5ad9af5d3603331f31aef5dca67833808694
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date:   Wed Oct 12 22:37:26 2016 +0100

    unbound: Move "listen on all" to main configuration file
    
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

commit b06187f5b65b6911ea90f0daa20ec0a50682070f
Author: Matthias Fischer <matthias.fischer(a)ipfire.org>
Date:   Wed Oct 12 21:08:50 2016 +0200

    Midnight Commander: Update to 4.8.18
    
    Signed-off-by: Matthias Fischer <matthias.fischer(a)ipfire.org>
    Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>

-----------------------------------------------------------------------

Summary of changes:
 config/rootfiles/packages/mc   | 2 ++
 config/unbound/unbound.conf    | 6 ++++--
 lfs/mc                         | 6 +++---
 src/initscripts/init.d/unbound | 3 ---
 4 files changed, 9 insertions(+), 8 deletions(-)

Difference in files:
diff --git a/config/rootfiles/packages/mc b/config/rootfiles/packages/mc
index f41e2d5..baf8e06 100644
--- a/config/rootfiles/packages/mc
+++ b/config/rootfiles/packages/mc
@@ -136,6 +136,7 @@ usr/share/mc/syntax/changelog.syntax
 usr/share/mc/syntax/cmake.syntax
 usr/share/mc/syntax/cs.syntax
 usr/share/mc/syntax/css.syntax
+usr/share/mc/syntax/cuda.syntax
 usr/share/mc/syntax/cxx.syntax
 usr/share/mc/syntax/cython.syntax
 usr/share/mc/syntax/d.syntax
@@ -152,6 +153,7 @@ usr/share/mc/syntax/erlang.syntax
 usr/share/mc/syntax/f90.syntax
 usr/share/mc/syntax/filehighlight.syntax
 usr/share/mc/syntax/fortran.syntax
+usr/share/mc/syntax/glsl.syntax
 usr/share/mc/syntax/go.syntax
 usr/share/mc/syntax/haskell.syntax
 usr/share/mc/syntax/html.syntax
diff --git a/config/unbound/unbound.conf b/config/unbound/unbound.conf
index 6d8a7f2..5193dd9 100644
--- a/config/unbound/unbound.conf
+++ b/config/unbound/unbound.conf
@@ -61,11 +61,13 @@ server:
 	harden-algo-downgrade: no
 	use-caps-for-id: no
 
+	# Listen on all interfaces
+	interface: 0.0.0.0
+
 	# Deny access from everywhere
 	access-control: 0.0.0.0/0 refuse
 
-	# Listen on localhost
-	interface: 127.0.0.1
+	# Allow access from localhost
 	access-control: 127.0.0.0/8 allow
 
 	# Bootstrap root servers
diff --git a/lfs/mc b/lfs/mc
index b682d64..d5d57bf 100644
--- a/lfs/mc
+++ b/lfs/mc
@@ -24,7 +24,7 @@
 
 include Config
 
-VER        = 4.8.17
+VER        = 4.8.18
 
 THISAPP    = mc-$(VER)
 DL_FILE    = $(THISAPP).tar.xz
@@ -32,7 +32,7 @@ DL_FROM    = $(URL_IPFIRE)
 DIR_APP    = $(DIR_SRC)/$(THISAPP)
 TARGET     = $(DIR_INFO)/$(THISAPP)
 PROG       = mc
-PAK_VER    = 13
+PAK_VER    = 14
 
 DEPS       = ""
 
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
 
 $(DL_FILE) = $(DL_FROM)/$(DL_FILE)
 
-$(DL_FILE)_MD5 = 0b3965f3267a76d895ce8ab90df2402b
+$(DL_FILE)_MD5 = 85ff9279f912c5482fe9f110f8892c96
 
 install : $(TARGET)
 
diff --git a/src/initscripts/init.d/unbound b/src/initscripts/init.d/unbound
index 1360844..4c6b452 100644
--- a/src/initscripts/init.d/unbound
+++ b/src/initscripts/init.d/unbound
@@ -148,9 +148,6 @@ write_interfaces_conf() {
 	(
 		config_header
 
-		echo "# bound to all interfaces"
-		echo "interface: 0.0.0.0"
-
 		# 1.1.1.1 is reserved for unused green
 		if [ -n "${GREEN_ADDRESS}" -a "${GREEN_ADDRESS}" != "1.1.1.1" ]; then
 			echo "# allow access from GREEN"


hooks/post-receive
--
IPFire 2.x development tree

                 reply	other threads:[~2016-10-12 21:42 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=20161012214233.0B8E41078E81@git01.ipfire.org \
    --to=git@ipfire.org \
    --cc=ipfire-scm@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