Hi Jack,
I think you do not need to use cat in next lines (live_img_pkg5_prep):
mnt_pnt=$(cat /etc/mnttab | grep "ramdisk" |
/usr/bin/nawk '{print $2}' | grep "^/$")
=>
mnt_pnt=$(grep "ramdisk" /etc/mnttab |
/usr/bin/nawk '{print $2}' | grep "^/$")and also for VARPKG. Cheers, Alex -- This message posted from opensolaris.org _______________________________________________ caiman-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/caiman-discuss

