From f3ea1f4ba66fe80a435b8224a8eb15e3c732e04b Mon Sep 17 00:00:00 2001 From: Chris Buechler Date: Sun, 23 Jan 2011 01:18:32 -0500 Subject: move dead packages into archive to clean this up a bit. I know there are some I missed if someone else would like to review --- config/freenas/www/services_rsyncd_local.php | 579 --------------------------- 1 file changed, 579 deletions(-) delete mode 100644 config/freenas/www/services_rsyncd_local.php (limited to 'config/freenas/www/services_rsyncd_local.php') diff --git a/config/freenas/www/services_rsyncd_local.php b/config/freenas/www/services_rsyncd_local.php deleted file mode 100644 index df29961a..00000000 --- a/config/freenas/www/services_rsyncd_local.php +++ /dev/null @@ -1,579 +0,0 @@ - - All rights reserved. - - Based on FreeNAS (http://www.freenas.org) - Copyright (C) 2005-2006 Olivier Cochard-Labbé . - All rights reserved. - - Based on m0n0wall (http://m0n0.ch/wall) - Copyright (C) 2003-2006 Manuel Kasper . - 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. - */ -/* ========================================================================== */ - -$pgtitle = array(gettext("Services"), - gettext("RSYNCD"), - gettext("Local")); - -require_once("freenas_config.inc"); -require_once("guiconfig.inc"); -require_once("freenas_guiconfig.inc"); -require_once("freenas_functions.inc"); - -if (!is_array($freenas_config['rsync_local'])) -{ - $freenas_config['rsync_local'] = array(); -} - -$a_months = array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"); -$a_weekdays = array("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"); - -$pconfig['readonly'] = $freenas_config['rsyncd']['readonly']; -$pconfig['port'] = $freenas_config['rsyncd']['port']; -$pconfig['motd'] = $freenas_config['rsyncd']['motd']; -$pconfig['maxcon'] = $freenas_config['rsyncd']['maxcon']; -$pconfig['rsyncd_user'] = $freenas_config['rsyncd']['rsyncd_user']; -$pconfig['enable'] = isset($freenas_config['rsyncd']['enable']); - -if (!is_array($freenas_config['mounts']['mount'])) { - $nodisk_errors[] = gettext("You must configure mount point first."); -} else { - if (! empty($_POST)) - { - /* hash */ - unset($error_bucket); - /* simple error list */ - unset($input_errors); - - $pconfig = $_POST; - - /* input validation */ - if ($_POST['enable']){ - $reqdfields = array_merge($reqdfields, explode(" ", "source destination")); - $reqdfieldsn = array_merge($reqdfieldsn, explode(",", "Source,Destination")); - } - - do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors); - - if ($_POST['enable'] && (strcmp($_POST['source'],$_POST['destination'])==0)) { - $error_bucket[] = array("error" => gettext("You can't have the same mount point for source and destination!"), - "field" => "source"); - } - - if (is_array($error_bucket)) - foreach($error_bucket as $elem) - $input_errors[] =& $elem["error"]; - - /* if this is an AJAX caller then handle via JSON */ - if(isAjax() && is_array($error_bucket)) { - input_errors2Ajax(NULL, $error_bucket); - exit; - } - - if (!$input_errors) - { - $freenas_config['rsync_local']['opt_delete'] = $_POST['opt_delete'] ? true : false;; - $freenas_config['rsync_local']['minute'] = $_POST['minutes']; - $freenas_config['rsync_local']['hour'] = $_POST['hours']; - $freenas_config['rsync_local']['day'] = $_POST['days']; - $freenas_config['rsync_local']['month'] = $_POST['months']; - $freenas_config['rsync_local']['weekday'] = $_POST['weekdays']; - $freenas_config['rsync_local']['source'] = $_POST['source']; - $freenas_config['rsync_local']['destination'] = $_POST['destination']; - $freenas_config['rsync_local']['enable'] = $_POST['enable'] ? true : false; - $freenas_config['rsync_local']['sharetosync'] = $_POST['sharetosync']; - $freenas_config['rsync_local']['all_mins'] = $_POST['all_mins']; - $freenas_config['rsync_local']['all_hours'] = $_POST['all_hours']; - $freenas_config['rsync_local']['all_days'] = $_POST['all_days']; - $freenas_config['rsync_local']['all_months'] = $_POST['all_months']; - $freenas_config['rsync_local']['all_weekdays'] = $_POST['all_weekdays']; - - write_config(); - - $retval = 0; - - if (!file_exists($d_sysrebootreqd_path)){ - /* nuke the cache file */ - config_lock(); - services_rsync_local_configure(); - services_cron_configure(); - config_unlock(); - } - - $savemsg = get_std_save_message($retval); - } - } - - mount_sort(); - $a_mount = &$freenas_config['mounts']['mount']; - - $pconfig['opt_delete'] = isset($freenas_config['rsync_local']['opt_delete']); - $pconfig['enable'] = isset($freenas_config['rsync_local']['enable']); - $pconfig['source'] = $freenas_config['rsync_local']['source']; - $pconfig['destination'] = $freenas_config['rsync_local']['destination']; - $pconfig['minute'] = $freenas_config['rsync_local']['minute']; - $pconfig['hour'] = $freenas_config['rsync_local']['hour']; - $pconfig['day'] = $freenas_config['rsync_local']['day']; - $pconfig['month'] = $freenas_config['rsync_local']['month']; - $pconfig['weekday'] = $freenas_config['rsync_local']['weekday']; - $pconfig['sharetosync'] = $freenas_config['rsync_local']['sharetosync']; - $pconfig['all_mins'] = $freenas_config['rsync_local']['all_mins']; - $pconfig['all_hours'] = $freenas_config['rsync_local']['all_hours']; - $pconfig['all_days'] = $freenas_config['rsync_local']['all_days']; - $pconfig['all_months'] = $freenas_config['rsync_local']['all_months']; - $pconfig['all_weekdays'] = $freenas_config['rsync_local']['all_weekdays']; - - if ($pconfig['all_mins'] == 1){ - $all_mins_all = " checked"; - } else { - $all_mins_selected = " checked"; - } - - if ($pconfig['all_hours'] == 1){ - $all_hours_all = " checked"; - } else { - $all_hours_selected = " checked"; - } - - if ($pconfig['all_days'] == 1){ - $all_days_all = " checked"; - } else { - $all_days_selected = " checked"; - } - - if ($pconfig['all_months'] == 1){ - $all_months_all = " checked"; - } else { - $all_months_selected = " checked"; - } - - if ($pconfig['all_weekdays'] == 1){ - $all_weekdays_all = " checked"; - } else { - $all_weekdays_selected = " checked"; - } -} - -/* if ajax is calling, give them an update message */ -if(isAjax()) - print_info_box_np($savemsg); - -include("head.inc"); -/* put your custom HTML head content here */ -/* using some of the $pfSenseHead function calls */ - -$jscriptstr = << - - - -EOD; - -$pfSenseHead->addScript($jscriptstr); -echo $pfSenseHead->getHTML(); - -?> - -"> - - - - -
- - - - - - - -
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - -
- - - onClick="enable_change(false)" />  - -
- -
- -
- -
- -
- /> - -
- - - - - - - - - - - - - - - - - - -
-
- /> -
- /> - -
-
- - - -
-
-
- /> -
- /> - -
-
- -
-
-
- /> -
- /> - -
-
- - -
-
-
- /> -
- /> - -
-
- -
-
-
- /> -
- /> - -
-
- -
-
- -
-
  - " /> -
-
-
-
- - - - - -- cgit v1.2.3