logical_volume { mount_point = "/var" largefiles = true
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
#/var needs lots of inodes due to SD's IPD nbpi = 2048
usage = HFS
blksize = _hp_HFS_blksize fragsize = _hp_HFS_fragsize
}else {
usage = VxFS
blksize = _hp_VxFS_blksize
}
disk[_hp_root_disk].size < 8192Mb { size = 72Mb remaining 500Mb
} else {
size = 72Mb remaining 500Mb + _hp_pri_swap
}
_hp_root_grp_striped == "YES" { stripes = *
stripe_size = _hp_FS_stripe_size
}
}
The definition of /tmp is a simpler case than the other volumes. In this case, the size is a fixed value. It is unlikely that any impacts caused by installing software would affect /tmp.
logical_volume { mount_point = "/tmp" largefiles = true
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" { nbpi = 2048
usage = HFS
blksize = _hp_HFS_blksize fragsize = _hp_HFS_fragsize
} else {
usage = VxFS
blksize = _hp_VxFS_blksize
}
disk[_hp_root_disk].size < 8192Mb { size = 64Mb
} else {
size = 200Mb
}
_hp_root_grp_striped == "YES" { stripes = *
stripe_size = _hp_FS_stripe_size
}
}
} # "Create separate volumes (/usr, /var, ...)"
Although it is rare to see an /export volume created, you can enable it by using the Additional button on the Basic tab in the
"Create /export volume" { logical_volume {
mount_point = "/export" largefiles = true
_hp_disk_layout == "Logical Volume Manager (LVM) with HFS" {
60