Date: Sunday, October 7, 2012 @ 18:14:23 Author: tomegun Revision: 168285
upgpkg: initscripts 2012.10.1-1 move initscripts out of base group Modified: initscripts/trunk/PKGBUILD initscripts/trunk/initscripts.install ---------------------+ PKGBUILD | 7 +++---- initscripts.install | 14 +++++++------- 2 files changed, 10 insertions(+), 11 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2012-10-07 21:09:20 UTC (rev 168284) +++ PKGBUILD 2012-10-07 22:14:23 UTC (rev 168285) @@ -4,13 +4,12 @@ # Contributor: Aaron Griffin <[email protected]> pkgname=initscripts -pkgver=2012.09.2 -pkgrel=2 +pkgver=2012.10.1 +pkgrel=1 pkgdesc="System initialization/bootup scripts" arch=('any') url="http://www.archlinux.org" license=('GPL2') -groups=('base') provides=('initscripts-systemd') conflicts=('initscripts-systemd') replaces=('initscripts-systemd') @@ -30,4 +29,4 @@ make DESTDIR=${pkgdir} install } -md5sums=('c0a550c17624a6e72dc0edb3da8d664c') +md5sums=('a4a747e73819b81f2218cf5b9bd53703') Modified: initscripts.install =================================================================== --- initscripts.install 2012-10-07 21:09:20 UTC (rev 168284) +++ initscripts.install 2012-10-07 22:14:23 UTC (rev 168285) @@ -1,9 +1,4 @@ post_upgrade() { - if [ "$(vercmp $2 2009.07)" -lt 0 ]; then - echo "==> Adjusting /etc/inittab for transition to /dev/tty standard." - echo "==> Original file saved as /etc/inittab.pacsave" - sed -i'.pacsave' 's#vc/\([0-9]\)#tty\1#' /etc/inittab - fi if [ "$(vercmp $2 2011.06.1)" -lt 0 ]; then echo "Blacklisting of modules is no longer supported in rc.conf," echo "please add blacklist entries to /etc/modprobe.d/ instead." @@ -18,9 +13,14 @@ fi if [ "$(vercmp $2 2012.08.1)" -lt 0 ]; then echo "----" - echo "> initscripts now ships a compatibility layer to make systemd use MODULES and" - echo "> DAEMONS from rc.conf; and run rc.local and rc.local.shutdown on boot and" + echo "> initscripts now ships a compatibility layer to make systemd use DAEMONS" + echo "> from rc.conf; and run rc.local and rc.local.shutdown on boot and" echo "> shutdown, respectively. Refer to arch-modules-load(8) and arch-daemons(8)." echo "----" fi + if [ "$(vercmp $2 2012.10.1)" -lt 0 ]; then + echo "----" + echo "> systemd no longer reads MODULES from rc.conf." + echo "----" + fi }
