#!/bin/sh # # This is to supply JASS with the proper disks to to mirrored by # DiskSuite. A bit of a hack but it's currently the only way to add # Custom keywords in jumpstart. # # I've also mirrored this in the user.init file. That way if JASS is run # standalone the variables are still set. # I believe that there is alot of potential yet untapped in this respect. # # Harry Hoffman # # Probe functions probe_dsdisks() { if [ `uname -n` = "myhost.auckland.ac.nz" ] ; then SI_ORIGDISK='c0t0d0' SI_MIRRORDISK='c0t1d0' export SI_ORIGDISK export SI_MIRRORDISK fi } # # Comparison Functions # cmp_dsdisks() { probe_dsdisks return 0 }