FreeNAS Code
This project has moved to github - see https://github.com/freenas
Brought to you by:
cochard,
mattolander
#!/usr/local/bin/php -f <?php /* rc.bootup part of FreeNAS (http://www.freenas.org) Copyright (C) 2005-2006 Olivier Cochard-Labbe <olivier@freenas.org>. All rights reserved. Based on m0n0wall (http://m0n0.ch/wall) Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ require_once("globals.inc"); /* let the other functions know we're booting */ $g['booting'] = TRUE; touch("{$g['varrun_path']}/booting"); /* parse the configuration and include all functions used below */ require_once("config.inc"); require_once("functions.inc"); /* convert configuration, if necessary */ convert_config(); /* Tune the system */ system_tuning(); /* Generate local user base */ system_users_create(); /* execute the rc.early scripts of extensions */ system_do_extensions(1); /* run any early shell commands specified in config.xml */ system_do_shell_commands(1); /* save dmesg output to file */ system_dmesg_save(); /* 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(); /* start pccardd */ if (!in_array($g['platform'], $g['nopccard_platforms'])) system_pccard_start(); /* configure loopback interface */ interfaces_loopback_configure(); /* set up LAN interface */ interfaces_lan_configure(); /* set up Optional interfaces */ interfaces_optional_configure(); /* set up static routes */ system_routing_configure(); /* start syslogd */ system_syslogd_start(); /* start web server */ system_webgui_start(); /* configure console menu */ system_console_configure(); /* start SNMP service */ /*services_snmpd_configure();*/ /* start iSCSI service */ services_iscsi_configure(); /* start the NTP client */ system_ntp_configure(); /* start the S.M.A.R.T daemon */ services_smart_configure(); /* ATA disk Idle configuration */ disks_set_ataidle(); /* RAID configuration */ disks_raid_start(); /* Mount the disks */ disks_mount_all(); /* Generate the pam configuration file */ system_pam_configure(); /* start NIS service */ services_nis_configure(); /* start SAMBA service */ services_samba_configure(); /* start Rsynd service */ services_rsyncd_configure(); /* start FTP service */ services_ftpd_configure(); /* start NFS service */ services_nfs_configure(); /* configure Unison service */ services_unison_configure(); /* start SSH service */ services_sshd_configure(); /* start AFP service */ services_afpd_configure(); /* start RSYNC client/slave mode service */ services_rsyncclient_configure(); /* start RSYNC local service */ services_rsync_local_configure(); /* Start cron */ services_cron_configure(); /* Start mdnsresponder (Zeroconf/Bonjour) */ services_mdnsresponder_configure(); /* set up termcap (for the firewall states page) */ system_set_termcap(); /* execute the rc scripts of extensions */ system_do_extensions(); /* run any shell commands specified in config.xml */ system_do_shell_commands(); /*DEBUG: WAIT 10 secondes */ //mwexec("/bin/sleep 10"); /* Send the start beep */ system_beep_up(); /* done */ unlink("{$g['varrun_path']}/booting"); ?>