From: Michael Tremer <git@ipfire.org>
To: ipfire-scm@lists.ipfire.org
Subject: [git.ipfire.org] IPFire 2.x development tree branch, master, updated. 4fc1a0045b48b1a459256d146030279c9905a13e
Date: Wed, 13 Mar 2019 15:43:37 +0000 [thread overview]
Message-ID: <20190313154337.A5E8C84FDD6@people01.i.ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 5626 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, master has been updated
via 4fc1a0045b48b1a459256d146030279c9905a13e (commit)
via 867151a8b21f6dbff56c4a7177d42d32b630a590 (commit)
via 5ea26096ca2a34bc41af03b40e2332db4d949da1 (commit)
from 9deeda77b6fc4d62dce279b9854094ae8fcf4a4a (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 4fc1a0045b48b1a459256d146030279c9905a13e
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date: Mon Mar 11 19:35:00 2019 +0000
amavisd: update to 2.11.1
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 867151a8b21f6dbff56c4a7177d42d32b630a590
Author: Peter Müller <peter.mueller(a)ipfire.org>
Date: Mon Mar 11 19:28:00 2019 +0000
Postfix: update to 3.4.3
Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
commit 5ea26096ca2a34bc41af03b40e2332db4d949da1
Author: Michael Tremer <michael.tremer(a)ipfire.org>
Date: Wed Mar 13 08:05:27 2019 +0000
installer: Set the clock correctly when installing over network
If a system has a not very up to date clock, downloading files
over HTTPS is impossible.
Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
-----------------------------------------------------------------------
Summary of changes:
lfs/amavisd | 12 ++++++------
lfs/postfix | 6 +++---
src/installer/dracut-module/70-dhcpcd.exe | 3 +++
src/installer/dracut-module/module-setup.sh | 2 +-
4 files changed, 13 insertions(+), 10 deletions(-)
Difference in files:
diff --git a/lfs/amavisd b/lfs/amavisd
index a46866236..026e43f2f 100644
--- a/lfs/amavisd
+++ b/lfs/amavisd
@@ -1,7 +1,7 @@
###############################################################################
# #
# IPFire.org - A linux based firewall #
-# Copyright (C) 2007-2018 IPFire Team <info(a)ipfire.org> #
+# Copyright (C) 2007-2019 IPFire Team <info(a)ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
@@ -24,15 +24,15 @@
include Config
-VER = 2.5.2
+VER = 2.11.1
THISAPP = amavisd-new-$(VER)
-DL_FILE = $(THISAPP).tar.gz
+DL_FILE = $(THISAPP).tar.bz2
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = amavisd
-PAK_VER = 1
+PAK_VER = 2
DEPS = "clamav spamassassin"
@@ -44,7 +44,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = 52d227d442fac64916488b83d79806d7
+$(DL_FILE)_MD5 = f89fc043c790e35137121e45f2890703
install : $(TARGET)
@@ -76,7 +76,7 @@ $(subst %,%_MD5,$(objects)) :
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
- @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
+ @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar xf $(DIR_DL)/$(DL_FILE)
cd $(DIR_APP) && cp -f amavisd /usr/bin
chown root.root /usr/bin/amavisd
chmod 755 /usr/bin/amavisd
diff --git a/lfs/postfix b/lfs/postfix
index acadacbeb..c34162d41 100644
--- a/lfs/postfix
+++ b/lfs/postfix
@@ -24,7 +24,7 @@
include Config
-VER = 3.4.1
+VER = 3.4.3
THISAPP = postfix-$(VER)
DL_FILE = $(THISAPP).tar.gz
@@ -32,7 +32,7 @@ DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
PROG = postfix
-PAK_VER = 18
+PAK_VER = 19
DEPS = ""
@@ -66,7 +66,7 @@ objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
-$(DL_FILE)_MD5 = d292bb49a1c79ff6d2eb9c5e88c51425
+$(DL_FILE)_MD5 = 7f539d5497f4cb0c3f5b66227aaeb561
install : $(TARGET)
diff --git a/src/installer/dracut-module/70-dhcpcd.exe b/src/installer/dracut-module/70-dhcpcd.exe
index 660f26941..d801c8ada 100755
--- a/src/installer/dracut-module/70-dhcpcd.exe
+++ b/src/installer/dracut-module/70-dhcpcd.exe
@@ -46,6 +46,9 @@ case "${reason}" in
# Create system configuration files
make_resolvconf
+
+ # Set time
+ ntpdate "ntp.ipfire.org"
;;
EXPIRE|FAIL|IPV4LL|NAK|NOCARRIER|RELEASE|STOP)
diff --git a/src/installer/dracut-module/module-setup.sh b/src/installer/dracut-module/module-setup.sh
index 103f754e9..ef4b15bdc 100755
--- a/src/installer/dracut-module/module-setup.sh
+++ b/src/installer/dracut-module/module-setup.sh
@@ -50,7 +50,7 @@ install() {
inst_libdir_file "libnss_dns.so.*"
# Misc. tools
- inst_multiple chmod cut grep eject id killall md5sum touch
+ inst_multiple chmod cut grep eject id killall md5sum ntpdate touch
inst_multiple -o fdisk cfdisk df ps top
# Hardware IDs
hooks/post-receive
--
IPFire 2.x development tree
reply other threads:[~2019-03-13 15:43 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=20190313154337.A5E8C84FDD6@people01.i.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