From b4d916734481bdce8b9097b7e12f47af6b322e0c Mon Sep 17 00:00:00 2001 From: zhaoertao Date: Wed, 12 Nov 2014 21:34:33 -0500 Subject: [PATCH] fix bug 4382 :increase /tmp size for default ubuntu diskless node --- xCAT-server/share/xcat/netboot/ubuntu/genimage | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xCAT-server/share/xcat/netboot/ubuntu/genimage b/xCAT-server/share/xcat/netboot/ubuntu/genimage index 2c3415189..2b41a05cd 100755 --- a/xCAT-server/share/xcat/netboot/ubuntu/genimage +++ b/xCAT-server/share/xcat/netboot/ubuntu/genimage @@ -1568,8 +1568,8 @@ sub generic_post { #This function is meant to leave the image in a state approxi print $cfgfile "tmpfs /tmp tmpfs defaults,size=$tmplimit 0 2\n"; print $cfgfile "tmpfs /var/tmp tmpfs defaults,size=$tmplimit 0 2\n"; } else { - print $cfgfile "tmpfs /tmp tmpfs defaults,size=10m 0 2\n"; - print $cfgfile "tmpfs /var/tmp tmpfs defaults,size=10m 0 2\n"; + print $cfgfile "tmpfs /tmp tmpfs defaults 0 2\n"; + print $cfgfile "tmpfs /var/tmp tmpfs defaults 0 2\n"; } my $rootfs_name=$profile."_".$arch;