diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-08-01 18:14:11 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-08-01 18:14:11 -0400 |
commit | 4ec765b7d461b021e27f145f6e43604ba0b72959 (patch) | |
tree | ac22f7b17a840000c22731180847ee88e805f0cd /usr | |
parent | 691f847549f79313a5b6ab0a435206c0f01e3057 (diff) | |
download | pfsense-4ec765b7d461b021e27f145f6e43604ba0b72959.zip pfsense-4ec765b7d461b021e27f145f6e43604ba0b72959.tar.gz |
Missing \n
Diffstat (limited to 'usr')
-rw-r--r-- | usr/local/www/installer.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/installer.php b/usr/local/www/installer.php index 135e0f2..c70ac44 100644 --- a/usr/local/www/installer.php +++ b/usr/local/www/installer.php @@ -103,7 +103,7 @@ function start_installation() { die("Could not open /tmp/installer.sh for writing"); exit; } - fwrite($fd, "rm /tmp/.pc-sysinstall/pc-sysinstall.log 2>/dev/null"); + fwrite($fd, "rm /tmp/.pc-sysinstall/pc-sysinstall.log 2>/dev/null\n"); 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"); |