#!/bin/sh
#
# Copyright (c) 1993 by Sun Microsystems, Inc.
#
# Patch 101318-06:
#	modify /etc/syslog.conf to put only kernel messages of priority
#	notice or greater on console.
#
ETC=$BASEDIR/etc

ed $ETC/syslog.conf <<end-o-script >/dev/null
g/\/dev\/console/s/kern\.debug/kern.notice
w
q
end-o-script

exit 0

