aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorDaniel Stefan Haischt <dsh@pfsense.org>2006-08-15 21:50:07 +0000
committerDaniel Stefan Haischt <dsh@pfsense.org>2006-08-15 21:50:07 +0000
commitebbd99ff36043e6fd4428bb0a520ff40dddeb3b4 (patch)
tree4997e14507427eb5aa751b3c2ee7130d498c390e /packages
parentc523e34fede5be83e7c84541e36bb9c2ae5ae875 (diff)
downloadpfsense-packages-ebbd99ff36043e6fd4428bb0a520ff40dddeb3b4.tar.gz
pfsense-packages-ebbd99ff36043e6fd4428bb0a520ff40dddeb3b4.tar.bz2
pfsense-packages-ebbd99ff36043e6fd4428bb0a520ff40dddeb3b4.zip
added rc.freenas as a replacement for the original FreeNAS rc.bootup
Diffstat (limited to 'packages')
-rw-r--r--packages/freenas/pkg/rc.freenas93
1 files changed, 93 insertions, 0 deletions
diff --git a/packages/freenas/pkg/rc.freenas b/packages/freenas/pkg/rc.freenas
new file mode 100644
index 00000000..90776413
--- /dev/null
+++ b/packages/freenas/pkg/rc.freenas
@@ -0,0 +1,93 @@
+#!/usr/local/bin/php -f
+<?php
+/* $Id$ */
+/*
+ rc.filter_configure
+ part of pfSense (http://www.pfSense.com)
+ Copyright (C) 2006 Daniel S. Haischt
+ 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");
+
+/* parse the configuration and include all functions used below */
+require_once("config.inc");
+require_once("functions.inc");
+require_once("freenas_functions.inc");
+
+/* Tune the system */
+system_tuning();
+
+/* Generate local user base */
+/* system_users_create(); */
+
+/* start iSCSI service */
+services_iscsi_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();
+
+/* start SSH service */
+services_sshd_configure();
+
+/* start AFP service */
+services_afpd_configure();
+
+/* start RSYNC client/slave mode service */
+services_rsyncclient_configure();
+
+/* Start cron */
+services_cron_configure();
+
+/* Start mdnsresponder (Zeroconf/Bonjour) */
+service_zeroconf_configure();
+
+?> \ No newline at end of file