blob: 08651d168a139b0826fc33caafd8a0130d3c4590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/bin/bash -x
# vim: set tw=4 sw=4 sts=4 et :
# Presently nothing to do
set -x
cat <<EOFSTAB >> /etc/fstab
# tmp should be tmpfs so gcc tmpfiles do not hit the disk
none /tmp tmpfs defaults 0 0
EOFSTAB
|