=================================================================== RCS file: /cvs/openbsd/update_openbsd/send_dmesg,v retrieving revision 1.1 retrieving revision 1.4 diff -u -r1.1 -r1.4 --- openbsd/update_openbsd/send_dmesg 2008/11/21 21:54:41 1.1 +++ openbsd/update_openbsd/send_dmesg 2009/12/10 19:35:26 1.4 @@ -1,7 +1,6 @@ #!/bin/sh -# $RedRiver$ +# $RedRiver: send_dmesg,v 1.3 2009/10/29 23:33:15 andrew Exp $ -SUBJECT=`sysctl -n hw.vendor` -SUBJECT="${SUBJECT} `sysctl -n hw.product`" +SUBJECT=`sysctl -n hw.vendor hw.product hw.version 2> /dev/null | xargs` #echo ${SUBJECT} -dmesg | mail -s "${SUBJECT}" andrew@rraz.net +( dmesg; sysctl hw.sensors ) | mail -s "${SUBJECT}" root