summaryrefslogtreecommitdiffstats
path: root/usr/local/www/wizards
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2005-07-24 16:45:08 +0000
committerScott Ullrich <sullrich@pfsense.org>2005-07-24 16:45:08 +0000
commit0b1138de2621d041064f1614ed16f4274891c5a2 (patch)
treeffd6fa8444381da2587c7e27b2281d4935cbcd87 /usr/local/www/wizards
parenta3c819513d14403011caa33c68f3feb0bdf18a15 (diff)
downloadpfsense-0b1138de2621d041064f1614ed16f4274891c5a2.zip
pfsense-0b1138de2621d041064f1614ed16f4274891c5a2.tar.gz
Eliminate reboot step from wizard
Diffstat (limited to 'usr/local/www/wizards')
-rw-r--r--usr/local/www/wizards/setup_wizard.xml55
1 files changed, 52 insertions, 3 deletions
diff --git a/usr/local/www/wizards/setup_wizard.xml b/usr/local/www/wizards/setup_wizard.xml
index 00684a6..403b6ea 100644
--- a/usr/local/www/wizards/setup_wizard.xml
+++ b/usr/local/www/wizards/setup_wizard.xml
@@ -484,11 +484,60 @@
</step>
<step>
<id>8</id>
- <title>Reboot in progress</title>
- <description>A reboot is now in progress. Please wait. &lt;p&gt; The system will automatically try to access $myurl in 120 seconds. &lt;p&gt; You can click on the icon above to access the site more quickly.
+ <title>Reload in progress</title>
+ <description>A reload is now in progress. Please wait. &lt;p&gt; The system will automatically try to access $myurl in 120 seconds. &lt;p&gt; You can click on the icon above to access the site more quickly.
&lt;meta http-equiv="refresh" content="120; url=$myurl" &gt;</description>
<stepafterformdisplay>
- system("/sbin/shutdown -r now");
+ /* set up our timezone */
+ system_timezone_configure();
+
+ /* set up our hostname */
+ system_hostname_configure();
+
+ /* make hosts file */
+ system_hosts_generate();
+
+ /* generate resolv.conf */
+ system_resolvconf_generate();
+
+ /* set up LAN interface */
+ interfaces_lan_configure();
+
+ /* set up WAN interface */
+ interfaces_wan_configure();
+
+ /* set up Optional interfaces */
+ interfaces_optional_configure();
+
+ /* bring up carp interfaces */
+ interfaces_carp_bringup();
+
+ /* set up static routes */
+ system_routing_configure();
+
+ /* enable routing */
+ system_routing_enable();
+
+ /* ensure passwords are sync'd */
+ system_password_configure();
+
+ /* start dnsmasq service */
+ services_dnsmasq_configure();
+
+ /* start dyndns service */
+ services_dyndns_configure();
+
+ /* start DHCP service */
+ services_dhcpd_configure();
+
+ /* start the NTP client */
+ system_ntp_configure();
+
+ /* start ftp proxy helpers if they are enabled */
+ system_start_ftp_helpers();
+
+ /* reload the filter */
+ filter_configure();
</stepafterformdisplay>
</step>
</pfsensewizard>
OpenPOWER on IntegriCloud