From: hickert Date: Wed, 27 Feb 2008 09:16:06 +0000 (+0000) Subject: Upadted event command for non time triggered actions. X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=a0fb61dfd338435c45bc99d83427eaecd8722dfb;p=gosa.git Upadted event command for non time triggered actions. git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@9155 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_halt.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_halt.inc index 2831550bc..0a55de1b2 100644 --- a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_halt.inc +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_halt.inc @@ -7,7 +7,7 @@ class DaemonEvent_halt extends DaemonEvent $this->s_Menu_Name = _("Shutdown"); $this->s_Event_Name = _("Shutdown"); $this->s_Schedule_Action = "job_trigger_action_halt"; - $this->s_Trigger_Action= "trigger_action_halt"; + $this->s_Trigger_Action= "gosa_trigger_action_halt"; $this->s_Menu_Image = "images/status_stopped.png"; $this->s_List_Image = "images/status_stopped.png"; } diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reboot.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reboot.inc index 22c1dd393..152c5af37 100644 --- a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reboot.inc +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reboot.inc @@ -8,7 +8,7 @@ class DaemonEvent_reboot extends DaemonEvent $this->s_Menu_Name = _("Reboot"); $this->s_Event_Name = _("Reboot a system"); $this->s_Schedule_Action = "job_trigger_action_reboot"; - $this->s_Trigger_Action= "trigger_action_reboot"; + $this->s_Trigger_Action= "gosa_trigger_action_reboot"; $this->s_Menu_Image = "images/list_reload.png"; $this->s_List_Image = "images/list_reload.png"; } diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reinstall.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reinstall.inc index b1cf8a5e8..c977c004f 100644 --- a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reinstall.inc +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_reinstall.inc @@ -11,7 +11,7 @@ class DaemonEvent_reinstall extends DaemonEvent $this->s_Menu_Name = _("Reinstall"); $this->s_Event_Name = _("Reinstall"); $this->s_Schedule_Action = "job_trigger_action_reinstall"; - $this->s_Trigger_Action= "trigger_action_reinstall"; + $this->s_Trigger_Action= "gosa_trigger_action_reinstall"; $this->s_Menu_Image = "images/fai_small.png"; $this->s_List_Image = "images/fai_small.png"; diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_update.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_update.inc index 604dabd65..47c4ecf6e 100644 --- a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_update.inc +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_update.inc @@ -9,7 +9,7 @@ class DaemonEvent_update extends DaemonEvent $this->s_Menu_Name = _("Software update"); $this->s_Event_Name = _("software update"); $this->s_Schedule_Action = "job_trigger_action_update"; - $this->s_Trigger_Action= "trigger_action_update"; + $this->s_Trigger_Action= "gosa_trigger_action_update"; $this->s_Menu_Image = "images/time.png"; $this->s_List_Image = "images/time.png"; } diff --git a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_wakeup.inc b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_wakeup.inc index 2f7da7cde..b70fa2880 100644 --- a/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_wakeup.inc +++ b/gosa-plugins/goto/addons/gotomasses/events/class_DaemonEvent_wakeup.inc @@ -8,7 +8,7 @@ class DaemonEvent_wakeup extends DaemonEvent $this->s_Menu_Name = _("Wake up"); $this->s_Event_Name = _("Start a system"); $this->s_Schedule_Action = "job_trigger_action_wake"; - $this->s_Trigger_Action= "trigger_action_wake"; + $this->s_Trigger_Action= "gosa_trigger_action_wake"; $this->s_Menu_Image = "images/status_running.png"; $this->s_List_Image = "images/status_running.png"; }