diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-08-01 17:57:00 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-08-01 17:57:00 -0400 |
commit | 1a99877d5747c3efd0a3977d8ced611e7120673e (patch) | |
tree | 08a7c6748e4824e7694271162fd21cd88d343561 /usr | |
parent | 185c72e62f7931d733e994d4f99fb0517afe0ef0 (diff) | |
download | pfsense-1a99877d5747c3efd0a3977d8ced611e7120673e.zip pfsense-1a99877d5747c3efd0a3977d8ced611e7120673e.tar.gz |
Ensure /tmp exists
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/installer.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/usr/local/www/installer.php b/usr/local/www/installer.php index 6736bb1..5737679 100644 --- a/usr/local/www/installer.php +++ b/usr/local/www/installer.php @@ -106,6 +106,7 @@ function start_installation() { fwrite($fd, "/PCBSD/pc-sysinstall/pc-sysinstall -c /PCBSD/pc-sysinstall/examples/pfSense-install.cfg \n"); fwrite($fd, "chmod a+rx /usr/local/bin/after_installation_routines.sh\n"); fwrite($fd, "cd / && /usr/local/bin/after_installation_routines.sh\n"); + fwrite($fd, "mkdir /mnt/tmp\n"); fwrite($fd, "umount /mnt\n"); fwrite($fd, "touch /tmp/install_complete\n"); fclose($fd); |