aboutsummaryrefslogtreecommitdiffstats
path: root/config/cron
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2011-01-06 15:53:15 -0500
committerScott Ullrich <sullrich@pfsense.org>2011-01-06 15:53:15 -0500
commitd09f3e6fbeeabe317639b39ca2f372d04336f22a (patch)
tree118bb9531151e8b618b397f944abbe459de2a391 /config/cron
parentb7f7b6e8395b523f758707937bf18555bd1721b5 (diff)
downloadpfsense-packages-d09f3e6fbeeabe317639b39ca2f372d04336f22a.tar.gz
pfsense-packages-d09f3e6fbeeabe317639b39ca2f372d04336f22a.tar.bz2
pfsense-packages-d09f3e6fbeeabe317639b39ca2f372d04336f22a.zip
Adding index.php so that when person clicks on the pfSense logo they are not greeted with a 404
Diffstat (limited to 'config/cron')
-rw-r--r--config/cron/cron.xml7
-rw-r--r--config/cron/index.php6
2 files changed, 12 insertions, 1 deletions
diff --git a/config/cron/cron.xml b/config/cron/cron.xml
index 7eff2388..69226739 100644
--- a/config/cron/cron.xml
+++ b/config/cron/cron.xml
@@ -84,7 +84,12 @@
<prefix>/usr/local/www/packages/cron/</prefix>
<chmod>0755</chmod>
<item>http://www.pfsense.com/packages/config/cron/cron_edit.tmp</item>
- </additional_files_needed>
+ </additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/www/packages/cron/</prefix>
+ <chmod>0755</chmod>
+ <item>http://www.pfsense.com/packages/config/cron/index.php</item>
+ </additional_files_needed>
<fields>
<field>
<fielddescr>Variable One</fielddescr>
diff --git a/config/cron/index.php b/config/cron/index.php
new file mode 100644
index 00000000..0d4ff4cd
--- /dev/null
+++ b/config/cron/index.php
@@ -0,0 +1,6 @@
+<?php
+
+Header("Location: /");
+exit;
+
+?> \ No newline at end of file