Hello community,

here is the log from the commit of package aaa_base for openSUSE:11.4
checked in at Mon May 23 18:49:29 CEST 2011.



--------
--- old-versions/11.4/UPDATES/all/aaa_base/aaa_base.changes     2011-05-10 
17:06:16.000000000 +0200
+++ 11.4/aaa_base/aaa_base.changes      2011-05-18 14:49:53.000000000 +0200
@@ -1,0 +2,8 @@
+Wed May 18 12:47:54 UTC 2011 - [email protected]
+
+ - Avoid tput command if TERM variable is not set.
+ - start boot.proc as soon as possible (somewhat related to bnc#664550)
+ - don't wait for bind mounts (bnc#690871)
+ - create loop devices in %post (bnc#661715)
+
+-------------------------------------------------------------------

calling whatdependson for 11.4-i586


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ aaa_base.spec ++++++
--- /var/tmp/diff_new_pack.jmDilU/_old  2011-05-23 18:47:30.000000000 +0200
+++ /var/tmp/diff_new_pack.jmDilU/_new  2011-05-23 18:47:30.000000000 +0200
@@ -21,7 +21,7 @@
 
 Name:           aaa_base
 Version:        11.4
-Release:        54.<RELEASE66>
+Release:        54.<RELEASE68>
 License:        GPLv2+
 Group:          System/Fhs
 Provides:       bin bootutls etc skeleng skelger 
@@ -229,14 +229,14 @@
 /var/adm/fillup-templates/sysconfig.windowmanager
 %dir /lib/udev
 %dir /lib/udev/devices
-%attr(660,root,disk) %dev(b,7,0) /lib/udev/devices/loop0
-%attr(660,root,disk) %dev(b,7,1) /lib/udev/devices/loop1
-%attr(660,root,disk) %dev(b,7,2) /lib/udev/devices/loop2
-%attr(660,root,disk) %dev(b,7,3) /lib/udev/devices/loop3
-%attr(660,root,disk) %dev(b,7,4) /lib/udev/devices/loop4
-%attr(660,root,disk) %dev(b,7,5) /lib/udev/devices/loop5
-%attr(660,root,disk) %dev(b,7,6) /lib/udev/devices/loop6
-%attr(660,root,disk) %dev(b,7,7) /lib/udev/devices/loop7
+%ghost %attr(660,root,disk) %dev(b,7,0) /lib/udev/devices/loop0
+%ghost %attr(660,root,disk) %dev(b,7,1) /lib/udev/devices/loop1
+%ghost %attr(660,root,disk) %dev(b,7,2) /lib/udev/devices/loop2
+%ghost %attr(660,root,disk) %dev(b,7,3) /lib/udev/devices/loop3
+%ghost %attr(660,root,disk) %dev(b,7,4) /lib/udev/devices/loop4
+%ghost %attr(660,root,disk) %dev(b,7,5) /lib/udev/devices/loop5
+%ghost %attr(660,root,disk) %dev(b,7,6) /lib/udev/devices/loop6
+%ghost %attr(660,root,disk) %dev(b,7,7) /lib/udev/devices/loop7
 
 %files extras
 %defattr(-,root,root)

++++++ aaa_base.post ++++++
--- /var/tmp/diff_new_pack.jmDilU/_old  2011-05-23 18:47:30.000000000 +0200
+++ /var/tmp/diff_new_pack.jmDilU/_new  2011-05-23 18:47:30.000000000 +0200
@@ -206,4 +206,13 @@
     fi
 fi
 
+# create loop devices here instead of doing it in rpm to allow
+# graceful fail (bnc#661715)
+for i in 0 1 2 3 4 5 6 7; do
+       mkdir -p /lib/udev/devices
+       test -b /lib/udev/devices/loop$i && continue
+       /bin/mknod -m 0660 /lib/udev/devices/loop$i b 7 $i || break
+       chown root:disk /lib/udev/devices/loop$i
+done
+
 exit 0

++++++ aaa_base.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/etc/bash.bashrc new/aaa_base/etc/bash.bashrc
--- old/aaa_base/etc/bash.bashrc        2010-12-07 18:11:52.000000000 +0100
+++ new/aaa_base/etc/bash.bashrc        2011-05-18 14:45:10.000000000 +0200
@@ -147,7 +147,7 @@
            ;;
        esac
        # Colored root prompt (see bugzilla #144620)
-       if test "$UID" -eq 0 -a -t ; then
+       if test "$UID" -eq 0 -a -n "$TERM" -a -t ; then
            _bred="$(path tput bold 2> /dev/null; path tput setaf 1 2> 
/dev/null)"
            _sgr0="$(path tput sgr0 2> /dev/null)"
            PS1="\[$_bred\]$PS1\[$_sgr0\]"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/etc/init.d/boot.localfs 
new/aaa_base/etc/init.d/boot.localfs
--- old/aaa_base/etc/init.d/boot.localfs        2011-03-21 13:57:40.000000000 
+0100
+++ new/aaa_base/etc/init.d/boot.localfs        2011-05-18 14:45:37.000000000 
+0200
@@ -61,7 +61,7 @@
 list_missed ()
 {
     local dev line
-    local mount_opts="-t no${tmpfs//,/,no},nonone -O no_netdev -O nonofail"
+    local mount_opts="-t no${tmpfs//,/,no},$nofs,nonone -O no_netdev -O 
nonofail -O nobind"
 
     mount -afnv $mount_opts 2> /dev/null | while read line ; do
        dev="${line%% *}"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aaa_base/etc/init.d/boot.proc 
new/aaa_base/etc/init.d/boot.proc
--- old/aaa_base/etc/init.d/boot.proc   2010-03-08 16:47:43.000000000 +0100
+++ new/aaa_base/etc/init.d/boot.proc   2011-05-18 14:46:04.000000000 +0200
@@ -7,8 +7,8 @@
 #
 ### BEGIN INIT INFO
 # Provides:          boot.proc
-# Required-Start:    boot.localfs boot.rootfsck
-# Required-Stop:     boot.localfs
+# Required-Start:    $null
+# Required-Stop:     $null
 # Default-Start:     B
 # Default-Stop:
 # Short-Description: sets some procfs values


++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to