On 3/18/07, Dennis <corovita at gmail.com> wrote:
> Thanks. The ntp service could be enabled. For those who have the same 
> problem: Simply rename ntp.client to ntp.conf and you can start the service.
>
> The keyserv problem could also be solved. Type:
> domainname esg.eng.sun.com
> domainname>/etc/defaultdomain
>
> and you can start that service too.
>
> One service could not be started
> system/auditd:default. This quits with:
> [ Mrz 18 15:31:30 Method "start" exited with status 98 ]
> [ Mrz 18 15:31:30 Stopping for maintenance due to administrative_request. ]

According to /lib/svc/share/smf_include.sh:

SMF_EXIT_MON_OFFLINE=98

According to /lib/svc/method/svc-auditd:

AUDITCONFIG=/usr/sbin/auditconfig
ZONE=`/sbin/zonename`

AUDITCOND=`$AUDITCONFIG -getcond 2> /dev/null`

if [ $? -ne 0 ]; then
        # The decision whether to start
        # auditing is driven by bsmconv / bsmunconv
        /usr/sbin/svcadm mark maintenance system/auditd
        exit $SMF_EXIT_MON_OFFLINE;
fi

When I run auditconfig on a system that hasn't had auditing turned on
with bsmconv, I get:

 # auditconfig -getcond
auditconfig: auditon(2) failed.
auditconfig: error = Invalid argument(22)

Assuming your auditconfig output is similar, I bet you can just do
"svcadm disable auditd" and you will be fine.

Mike

Reply via email to