#!/bin/bash

if [[ $1 = "on" ]]
then
	sudo mount -o remount,size=12G,noatime /tmp
elif [[ $1 = "off" ]]
then
	sudo mount -o remount,size=4G,noatime /tmp
fi