From 9b0a73636e8c3a7a9d37a7caca1ca20c54bb0f97 Mon Sep 17 00:00:00 2001 From: hickert Date: Wed, 29 Sep 2010 13:39:56 +0000 Subject: [PATCH] Made utc option checkable. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19851 594d385d-05f5-0310-b6e9-bd551577e9d8 --- .../goto/admin/systems/goto/Device/InstallRecipe.tpl | 5 +++-- .../goto/admin/systems/goto/Device/class_InstallRecipe.inc | 2 ++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl b/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl index 65ea81a69..e4693688e 100644 --- a/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl +++ b/gosa-plugins/goto/admin/systems/goto/Device/InstallRecipe.tpl @@ -72,9 +72,10 @@ - diff --git a/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc b/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc index 64bdd2029..40cdc4289 100644 --- a/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc +++ b/gosa-plugins/goto/admin/systems/goto/Device/class_InstallRecipe.inc @@ -85,6 +85,7 @@ class InstallRecipe extends plugin if(isset($_POST['InstallRecipePosted'])){ plugin::save_object(); $this->kickstartRootEnabled = isset($_POST['kickstartRootEnabled']); + $this->kickstartTimeUTC = isset($_POST['kickstartTimeUTC']); if(isset($_POST['setKickstartRootPasswordHash'])){ @@ -113,6 +114,7 @@ class InstallRecipe extends plugin // if(!$this->kickstartRootEnabled) $this->kickstartRootPasswordHash = ""; $this->kickstartRootEnabled = ($this->kickstartRootEnabled)?'TRUE':'FALSE'; + $this->kickstartTimeUTC = ($this->kickstartTimeUTC)?'TRUE':'FALSE'; plugin::save(); -- 2.30.2
- + +