John,

On Mon, Apr 10, 2006 at 09:27:27AM -0700, John Buttitto wrote:
> When I  import I then get:
> 
> offline        22:13:34 svc:/application/sandcherry/agent:default
> 
> from the svcs command. 
> 
> I then try to enable the service and I get nothing. No processes
> started, no errors, not enabled.

  The reason is probably that this dependency isn't satisfied:

>         <dependency
>                 name='fs'
>                 grouping='require_all'
>                 restart_on='none'
>                 type='service'>
>                 <service_fmri value='svc:/usr/local/sc' />
>         </dependency>

  But you can find out for sure using

    svcs -x svc:/application/sandcherry/agent:default

  Unless you've created it, "/usr/local/sc" isn't a service.  If you're
  trying to wait until the necessary filesystems are available, you
  should instead depend on the appropriate filesystem service.  In the
  case of a locally-mounted /usr/local/sc, that would be
  svc:/system/filesystem/local.

  Dave


Reply via email to