10 lines
156 B
Text
10 lines
156 B
Text
|
#!/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
|