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