Quoth Greg Donkin on Wed, Jun 21, 2006 at 06:59:14AM -0700: > In the Service Developer Introduction document Section 5 about > ignoring faults it says that you can "inform the restarter that > certain errors are expected" and there follows an example xml fragment > which appears in the cron manifest: > > <property_group name='startd' type='framework'> > <propval name='ignore_error' type='astring' value='core,signal' /> > </property_group> > > What are the values that startd recognises? That is, what value= > options can I put in here?
svc.startd(1M) says startd/ignore_error The ignore_error property, if set, specifies a comma- separated list of ignored events. Legitimate string values in that list are core and signal. The default is to restart on all errors. > And while I'm here, are there any guidelines/hints as to the "right" > uses for property groups and types? I must admit I'm a little confused > as to exactly what you do with them. I assume you mean property_group elements. They should be used whenever you need to create a property on a service which is not already covered by another element (like dependency, dependent, or exec_method). David