[yast-commit] r60351 - /trunk/yast2/scripts/save_y2logs
Author: aschnell Date: Wed Jan 13 16:49:08 2010 New Revision: 60351 URL: http://svn.opensuse.org/viewcvs/yast?rev=60351&view=rev Log: - include dmesg output in logs Modified: trunk/yast2/scripts/save_y2logs Modified: trunk/yast2/scripts/save_y2logs URL: http://svn.opensuse.org/viewcvs/yast/trunk/yast2/scripts/save_y2logs?rev=60351&r1=60350&r2=60351&view=diff ============================================================================== --- trunk/yast2/scripts/save_y2logs (original) +++ trunk/yast2/scripts/save_y2logs Wed Jan 13 16:49:08 2010 @@ -49,6 +49,11 @@ LIST="$LIST $( cd /var/log/; ls evms-engine.*)" fi +if [ -x /bin/dmesg ]; then + dmesg > $TMPDIR/dmesg + LIST="$LIST $TMPDIR/dmesg" +fi + if [ -f /var/log/zypp/history ]; then LIST="$LIST $( cd /var/log/; ls zypp/history*)" fi -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
aschnell@svn.opensuse.org