diff options
author | jim-p <jimp@pfsense.org> | 2011-02-23 12:35:45 -0500 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2011-02-23 12:36:43 -0500 |
commit | 6c67a28df2bc9d805285a820212d6d299600ce7f (patch) | |
tree | 42292ba51ffee0f65f36fdd4d2ce09838d7ba625 | |
parent | 0030036fe1da0c5b99f4ea3654be23b5c66e8e8d (diff) | |
download | pfsense-6c67a28df2bc9d805285a820212d6d299600ce7f.zip pfsense-6c67a28df2bc9d805285a820212d6d299600ce7f.tar.gz |
Set PKG_TMPDIR for embedded/nano because it will fill up /var trying to download packages otherwise. (From sullrich)
-rwxr-xr-x | etc/rc | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -49,10 +49,12 @@ if [ "$PLATFORM" = "cdrom" ]; then fi if [ "$PLATFORM" = "embedded" ]; then + export PKG_TMPDIR=/root/ /etc/rc.embedded fi if [ "$PLATFORM" = "nanobsd" ]; then + export PKG_TMPDIR=/root/ /etc/rc.embedded fi |