Hello community, here is the log from the commit of package aaa_base for openSUSE:Factory checked in at Thu May 19 09:07:10 CEST 2011.
-------- --- aaa_base/aaa_base.changes 2011-05-17 14:43:10.000000000 +0200 +++ /mounts/work_src_done/STABLE/aaa_base/aaa_base.changes 2011-05-18 17:03:15.000000000 +0200 @@ -1,0 +2,21 @@ +Wed May 18 15:02:24 UTC 2011 - [email protected] + +- bind mount /run on /var/run + +------------------------------------------------------------------- +Wed May 18 13:24:02 UTC 2011 - [email protected] + +- fix wrong logic in %post + +------------------------------------------------------------------- +Wed May 18 09:24:31 UTC 2011 - [email protected] + +- Avoid tput command if TERM variable is not set. + +------------------------------------------------------------------- +Wed May 18 08:15:30 UTC 2011 - [email protected] + +- start boot.proc as soon as possible +- don't wait for bind mounts (bnc#690871) + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ aaa_base.spec ++++++ --- /var/tmp/diff_new_pack.5F0qMt/_old 2011-05-19 09:00:24.000000000 +0200 +++ /var/tmp/diff_new_pack.5F0qMt/_new 2011-05-19 09:00:24.000000000 +0200 @@ -21,7 +21,7 @@ Name: aaa_base Version: 11.5 -Release: 79 +Release: 81 License: GPLv2+ Group: System/Fhs Url: http://gitorious.org/opensuse/aaa_base ++++++ aaa_base.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/aaa_base.post new/aaa_base/aaa_base.post --- old/aaa_base/aaa_base.post 2011-05-17 14:16:22.000000000 +0200 +++ new/aaa_base/aaa_base.post 2011-05-18 16:20:12.000000000 +0200 @@ -210,7 +210,7 @@ # 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 + 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 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/files/etc/bash.bashrc new/aaa_base/files/etc/bash.bashrc --- old/aaa_base/files/etc/bash.bashrc 2011-05-17 14:16:22.000000000 +0200 +++ new/aaa_base/files/etc/bash.bashrc 2011-05-18 16:20:12.000000000 +0200 @@ -151,7 +151,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/files/etc/init.d/boot new/aaa_base/files/etc/init.d/boot --- old/aaa_base/files/etc/init.d/boot 2011-05-17 14:16:22.000000000 +0200 +++ new/aaa_base/files/etc/init.d/boot 2011-05-18 16:20:12.000000000 +0200 @@ -109,6 +109,9 @@ echo -n "Mounting tmpfs at /run" mount -n -t tmpfs -o mode=0755,nodev,noexec,nosuid tmpfs /run fi +if test -d /var/run; then + mount -n --bind /run /var/run +fi cp -axT --remove-destination /lib/udev/devices /dev diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/files/etc/init.d/boot.cleanup new/aaa_base/files/etc/init.d/boot.cleanup --- old/aaa_base/files/etc/init.d/boot.cleanup 2011-05-17 14:16:22.000000000 +0200 +++ new/aaa_base/files/etc/init.d/boot.cleanup 2011-05-18 16:20:12.000000000 +0200 @@ -31,12 +31,12 @@ # clean up # rm -f /var/lib/rpm/__db* - rm -rf /tmp/screens /tmp/uscreens /var/run/screens /var/run/uscreens 2>/dev/null + rm -rf /tmp/screens /tmp/uscreens 2>/dev/null rm -f /tmp/.X*lock /var/spool/uucp/LCK* /var/log/sa/sadc.LOCK /fsck_corrected_errors 2>/dev/null if test -x /usr/bin/find -a -x /usr/bin/xargs; then { find /tmp/ssh-* /tmp/gpg-* -type s -name "*agent*" -maxdepth 1 -print0 - find /var/run /var/lock -type f ! -wholename /var/run/utmp -print0 + find /var/lock -type f -print0 if test -d /var/lib/ntp/var/run; then find /var/lib/ntp/var/run -type f -print0 fi @@ -53,12 +53,8 @@ done } # - test -d /var/run && rec_rem /var/run test -d /var/lock && rec_rem /var/lock fi - if test -d /run -a ! -L /var/run ; then - rmdir /var/run && ln -sf /run /var/run - fi touch /var/run/utmp chmod 664 /var/run/utmp chown root:utmp /var/run/utmp diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/aaa_base/files/etc/init.d/boot.localfs new/aaa_base/files/etc/init.d/boot.localfs --- old/aaa_base/files/etc/init.d/boot.localfs 2011-05-17 14:16:22.000000000 +0200 +++ new/aaa_base/files/etc/init.d/boot.localfs 2011-05-18 16:20:12.000000000 +0200 @@ -61,7 +61,7 @@ list_missed () { local dev line - local mount_opts="-t no${tmpfs//,/,no},$nofs,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/files/etc/init.d/boot.proc new/aaa_base/files/etc/init.d/boot.proc --- old/aaa_base/files/etc/init.d/boot.proc 2011-05-17 14:16:22.000000000 +0200 +++ new/aaa_base/files/etc/init.d/boot.proc 2011-05-18 16:20:12.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]
