summaryrefslogtreecommitdiffstats
path: root/src/os-plugins/plugins/vmware/init-hooks/80-after-plugins/adapt-tmpfs.sh
blob: a28a8c6fd82ee1120b70994e21de1960f998eee8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/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