#!/bin/sh # Copyright (c) 2010 - OpenSLX GmbH # # This program is free software distributed under the GPL version 2. # See http://openslx.org/COPYING # # If you have any feedback please consult http://openslx.org/feedback and # send your feedback to feedback@openslx.org # # General information about OpenSLX can be found at http://openslx.org # # Init hook to adapt the tmpfs size for VMware/Player # (should be kept identical to the files of virtualbox plugin) ############################################################################# # adapt tmpfs size (overbook) case $(grep tmpfs /proc/mounts) in */tmp*) mount -o remount,size=160% /mnt/tmp ;; */uniontmp*) mount -o remount,size=160% /mnt/uniontmp ;; esac