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 "Arch Linux initscripts repository". The branch, master has been updated via 71fe1590598381588502e58b60622b0b72d79454 (commit) via f90526071644423b67a9ba4b0421f94b890dee89 (commit) via 0093b7447019a9ca73c619c007fdd287329f9f52 (commit) via 5f7f87fa3259310454793521ac181028c31c1014 (commit) via 34c8a9f600d17010ed6b77ad685ed83a76322d3d (commit) via e0cd30462e62bad1420bd83d4408cc83ae202fda (commit) via ae92346c03bc60578bfb5bddef9dbbf1b4d71460 (commit) via 872444291d3ab4cbeecd4a24216531564986a01c (commit) via 5948612fe7191734ccc89570e808659ee2e6b3e3 (commit) via 227b71e67d19f73128862d20aac714537c8517df (commit) via 4e573b6b35d4468b4b3856a7784728f75ab2e73a (commit) via 1ce1675dd7c2edf89c58be70908df289c2b2665b (commit) via a74f312263b4154414dea1bc494818b1bcbb6b9b (commit) from 7cccf54fcb9fab459590b8b6fd5c51f2088e3b2e (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 71fe1590598381588502e58b60622b0b72d79454 Author: Tom Gundersen <teg@jklm.no> Date: Sat Sep 24 22:50:46 2011 +0200 bootlog: clean some more ANSI codes I was getting "^[71G", this fixed it. Signed-off-by: Tom Gundersen <teg@jklm.no> commit f90526071644423b67a9ba4b0421f94b890dee89 Author: Tom Gundersen <teg@jklm.no> Date: Sat Sep 24 22:23:35 2011 +0200 kill: give proper error messages and increase timeout With the new logic we will only wait for the timeout in case of problems, we therefore increase the timeout as this will make problems more obvious. There has been reports of problems with processes not being terminated, but hopefully this should help us reproduce them. Signed-off-by: Tom Gundersen <teg@jklm.no> commit 0093b7447019a9ca73c619c007fdd287329f9f52 Author: Tom Gundersen <teg@jklm.no> Date: Sat Sep 24 22:21:32 2011 +0200 shutdown: move disabling of monitoring/swap We do this before killing all processes. There is no reason to do it later, and this might give some processes a bit more time to terminate properly. Signed-off-by: Tom Gundersen <teg@jklm.no> commit 5f7f87fa3259310454793521ac181028c31c1014 Author: Tom Gundersen <teg@jklm.no> Date: Sat Sep 24 22:19:29 2011 +0200 timezone: use function in shutdown like in sysinit This uses the function introduced in 9b77b7d7b535c3c52c99a95374e1f800466c6414. Signed-off-by: Tom Gundersen <teg@jklm.no> commit 34c8a9f600d17010ed6b77ad685ed83a76322d3d Author: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> Date: Mon Sep 12 12:32:23 2011 -0300 [initscripts] Remove too early /dev/null redirection Since recent change in udev package [#1] (install: remove post-install) In case of booting without initramfs and there is no /dev/null: * if / is ro, devtmpfs mount will fail, in consecuence /dev will be mounted as tmpfs. * if / is rw, devtmpfs mount will success, but a regular file /dev/null in / will be created. [#1] http://projects.archlinux.org/svntogit/packages.git/commit/trunk?h=packages/udev&id=8728747c2b3d5d0506f7e6f1ac74edc0319591d6 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> commit e0cd30462e62bad1420bd83d4408cc83ae202fda Author: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> Date: Fri Aug 19 11:29:30 2011 -0300 [initscript] Make locale.sh consistent with default rc.conf rc.conf defaults LOCALE to en_US.UTF-8 Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> commit ae92346c03bc60578bfb5bddef9dbbf1b4d71460 Author: Dave Reisner <dreisner@archlinux.org> Date: Sun Sep 4 15:41:53 2011 -0400 timezone: create /etc/localtime as a symlink Abstract out timezone setting into its own function, passing Country/Area as a parameter. Do some menial checking to make sure: - the zonefile actually exists, erroring when it doesn't - /etc/localtime is a symlink to the correct zoneinfo file, relinking when it isn't. Signed-off-by: Dave Reisner <dreisner@archlinux.org> commit 872444291d3ab4cbeecd4a24216531564986a01c Author: Dave Reisner <dreisner@archlinux.org> Date: Sun Sep 4 10:12:18 2011 -0400 functions: clarify source of module loading This isn't _all_ your modules. Just the extras specified from rc.conf. Signed-off-by: Dave Reisner <dreisner@archlinux.org> commit 5948612fe7191734ccc89570e808659ee2e6b3e3 Author: Sebastien Luttringer <seblu@seblu.net> Date: Wed Aug 31 11:32:51 2011 +0200 Load sysctl config files from sysctl.d This patch implement loading of sysctl config files as described in http://0pointer.de/public/systemd-man/sysctl.d.html This is a very conveniant way of configuring sysctl option for sysadmin which can drop sysctl config files inside this directory to enable some feature. Dropping a file like disableipv6.conf inside this directory will disable ipv6 $ cat disableipv6.conf net.ipv6.conf.all.disable_ipv6 = 1 There is atm no package which use this functionnality Signed-off-by: Sebastien Luttringer <seblu@seblu.net> commit 227b71e67d19f73128862d20aac714537c8517df Author: Sebastien Luttringer <seblu@seblu.net> Date: Mon Aug 8 21:38:56 2011 +0200 rc.d: handle a set of options rc.d can now take --started, --stopped, --auto, --noauto as option which help user to filter list of daemon for all actions As a corollary list command can now take a list of dameon to display All kind of arguments can be mixed to obtain the proper output. zsh and bash completion are updated Note: Output of help command exit 0 and is no more printed on stderr Signed-off-by: Sebastien Luttringer <seblu@seblu.net> commit 4e573b6b35d4468b4b3856a7784728f75ab2e73a Author: Sebastien Luttringer <seblu@seblu.net> Date: Mon Aug 8 20:50:51 2011 +0200 New smarter display of bad daemon names in rc.d Signed-off-by: Sebastien Luttringer <seblu@seblu.net> commit 1ce1675dd7c2edf89c58be70908df289c2b2665b Author: Sebastien Luttringer <seblu@seblu.net> Date: Mon Aug 8 20:13:20 2011 +0200 Remove double case in hwclock daemon Signed-off-by: Sebastien Luttringer <seblu@seblu.net> commit a74f312263b4154414dea1bc494818b1bcbb6b9b Author: Sebastien Luttringer <seblu@seblu.net> Date: Wed Jul 27 23:07:15 2011 +0200 Let background daemons show errors on stderr Daemon running in background should let error output to be printed. Standart output is still hided to have a correct printing in default cases. This will help to detect error in daemon runned in background. This will also remove have_daemon call which is already called in start_daemon. Signed-off-by: Sebastien Luttringer <seblu@seblu.net> ----------------------------------------------------------------------- Summary of changes: Makefile | 4 +- arch-sysctl | 29 +++++++++++++ bash-completion | 20 ++++---- functions | 75 +++++++++++++++++++++++---------- hwclock | 6 +-- locale.sh | 2 +- rc.d | 124 +++++++++++++++++++++++++++++++++++++++--------------- rc.multi | 4 +- rc.shutdown | 17 +++---- rc.sysinit | 6 +-- zsh-completion | 8 +--- 11 files changed, 199 insertions(+), 96 deletions(-) create mode 100755 arch-sysctl hooks/post-receive -- Arch Linux initscripts repository