From 816bfaaafd5fdec926885bb319e9ae0959cbc048 Mon Sep 17 00:00:00 2001 From: Scott Ullrich Date: Fri, 14 Aug 2009 16:18:42 -0400 Subject: Patch from garga@ to resolve NanoBSD upgrade issues --- etc/rc | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'etc/rc') diff --git a/etc/rc b/etc/rc index 9db22f6..6f9af63 100755 --- a/etc/rc +++ b/etc/rc @@ -245,6 +245,12 @@ echo "done." # Recreate capabilities DB cap_mkdb /etc/login.conf +if [ "$PLATFORM" = "nanobsd" -o "$PLATFORM" = "embedded" ]; then + upload_tmp_dir="/root" +else + upload_tmp_dir="/tmp" +fi + if [ "$PLATFORM" != "cdrom" ]; then # Populate a dummy php.ini to avoid # the file being clobbered and the firewall @@ -258,7 +264,7 @@ max_execution_time = 99999999 max_input_time = 99999999 register_argc_argv = Off file_uploads = On -upload_tmp_dir = /tmp +upload_tmp_dir = ${upload_tmp_dir} upload_max_filesize = 90M post_max_size = 90M html_errors = Off -- cgit v1.1