> #!/usr/bin/sh > # > # Sachin Butala (2010-02-17) > # SMF Method file for Oracle 11gR2 OCSS > # E-mail: sachin.butala at trueposition.com > # > > . /lib/svc/share/smf_include.sh > > case "$1" in > start) > /u01/grid/oracle/product/11.2.0/asm_1/bin/crs_start.bi > n -all 2>&1 & > sleep 10 > ;;
An SMF method script should not run processes in the background. Omit the `&' and the `sleep'. That may be all that you need. Otherwise, something in the method script should test that the service is fully operational before permitting the script to exit. -- This message posted from opensolaris.org