Skip to content

Commit

Permalink
Move /tmp to /work/tmp
Browse files Browse the repository at this point in the history
There is not enough space on / (where /tmp was) for all the potentially
very large files generated during the convergence test.
  • Loading branch information
sipv committed Mar 6, 2017
1 parent e131d11 commit dfa402d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion provision/00-system.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,13 @@ else
mkdir $PREFIX
chown -R ubuntu:ubuntu $prefix_base
fi


# Move temp dir
mkdir /work/tmp
chmod 1777 /work/tmp
sudo rm -r /tmp
sudo ln -s /work/tmp /tmp

# setup /work/env/lib as system wide library location
echo /work/env/lib > /etc/ld.so.conf.d/work.conf
ldconfig
Expand Down

0 comments on commit dfa402d

Please sign in to comment.