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 55bec7f58fa5b38a8ce37d3667730c80e85f2577 (commit) via 9f212a96075bd0c3cc0b55c57ea8c2427ef6847c (commit) via 4de55e0b3d1cedf25f9ea2b00e17d054115bf8fa (commit) via 93474644055b272ec614cbc27b5bf7eb9ab3c379 (commit) from 18e7404874ed3442a38cd538a7184cfc67951db1 (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 55bec7f58fa5b38a8ce37d3667730c80e85f2577 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 21 20:26:26 2012 +0100
core56: stop/start sshd and apache while updateing.
commit 9f212a96075bd0c3cc0b55c57ea8c2427ef6847c Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 21 20:24:09 2012 +0100
core56: add openvpnctrl to updater.
commit 4de55e0b3d1cedf25f9ea2b00e17d054115bf8fa Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 21 20:20:57 2012 +0100
initskripts: add disc sync before unmounting filesystems.
commit 93474644055b272ec614cbc27b5bf7eb9ab3c379 Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 21 20:19:25 2012 +0100
core56: add Crypt-PasswdMD5 to updater.
-----------------------------------------------------------------------
Summary of changes: config/rootfiles/core/56/filelists/Crypt-PasswdMD5 | 1 + config/rootfiles/core/56/filelists/files | 2 ++ config/rootfiles/core/56/update.sh | 5 ++++- src/initscripts/init.d/mountfs | 4 ++++ 4 files changed, 11 insertions(+), 1 deletions(-) create mode 120000 config/rootfiles/core/56/filelists/Crypt-PasswdMD5
Difference in files: diff --git a/config/rootfiles/core/56/filelists/Crypt-PasswdMD5 b/config/rootfiles/core/56/filelists/Crypt-PasswdMD5 new file mode 120000 index 0000000..9a766e1 --- /dev/null +++ b/config/rootfiles/core/56/filelists/Crypt-PasswdMD5 @@ -0,0 +1 @@ +../../../common/Crypt-PasswdMD5 \ No newline at end of file diff --git a/config/rootfiles/core/56/filelists/files b/config/rootfiles/core/56/filelists/files index 26d35c5..58c1960 100644 --- a/config/rootfiles/core/56/filelists/files +++ b/config/rootfiles/core/56/filelists/files @@ -1,8 +1,10 @@ etc/system-release etc/issue +etc/rc.d/init.d/mountfs etc/rc.d/init.d/smartenabler srv/web/ipfire/cgi-bin/chpasswd.cgi srv/web/ipfire/cgi-bin/hardwaregraphs.cgi srv/web/ipfire/cgi-bin/media.cgi usr/local/bin/hddshutdown usr/local/bin/makegraphs +usr/local/bin/openvpnctrl diff --git a/config/rootfiles/core/56/update.sh b/config/rootfiles/core/56/update.sh index cde93e1..2655a40 100644 --- a/config/rootfiles/core/56/update.sh +++ b/config/rootfiles/core/56/update.sh @@ -34,6 +34,8 @@ done
# #Stop services +/etc/init.d/sshd stop +/etc/init.d/apache stop
# #Extract files @@ -46,7 +48,8 @@ sed -i -e "s|38400|115200|g" /etc/inittab
# #Start services - +/etc/init.d/apache start +/etc/init.d/sshd start
# #Update Language cache diff --git a/src/initscripts/init.d/mountfs b/src/initscripts/init.d/mountfs index 43ef02d..01ecafd 100644 --- a/src/initscripts/init.d/mountfs +++ b/src/initscripts/init.d/mountfs @@ -40,6 +40,10 @@ case "${1}" in ;;
stop) + boot_mesg "Syncing discs..." + sync && sync + evaluate_retval + boot_mesg "Unmounting all other currently mounted file systems..." umount -a -d -r &>/dev/null evaluate_retval
hooks/post-receive -- IPFire 2.x development tree