#!/bin/sh
#
#       test.verify filename
#
#  Verify that the log message contains a valid comment 
#  on the first line.
#
if head -1 < $1 | grep '^Comment:[ ]*$' > /dev/null; then
    exit 0


