Code

fixing the user notification switch
authorrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 16 Sep 2009 13:28:27 +0000 (13:28 +0000)
committerrettenbe <rettenbe@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 16 Sep 2009 13:28:27 +0000 (13:28 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@14259 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-si/client/events/gosaTriggered.pm

index 93ddbed27131461ad734ca6cfe470c756c8c3a69..e73b69f7c1bc168dfa3ba5158a707eab7caea175 100644 (file)
@@ -56,8 +56,8 @@ END {}
 ### Parameter declarations ###################################################
 my $userNotification;
 my %cfg_defaults = (
-"ClientPackages" => {
-       "user-notification-of-admin-activities" => [\$userNotification, 'enabled'],
+"client" => {
+       "user-notification-of-admin-activities" => [\$userNotification, 'true'],
        },
 );
 
@@ -187,7 +187,7 @@ sub trigger_action_localboot {
     }
 
        # Check if user should be notificated or not
-       if ($userNotification eq "enabled") {
+       if ($userNotification eq "true") {
                # Check logged in user
                my @user_list = &get_logged_in_users;
                if( @user_list >= 1 ) {
@@ -286,7 +286,7 @@ sub trigger_action_reboot {
     }
 
        # Check if user should be notificated or not
-       if ($userNotification eq "enabled") {
+       if ($userNotification eq "true") {
                # Check logged in user
                my @user_list = &get_logged_in_users;
                if( @user_list >= 1 ) {
@@ -348,7 +348,7 @@ sub trigger_action_halt {
     }
 
        # Check if user should be notificated or not
-       if ($userNotification eq "enabled") {
+       if ($userNotification eq "true") {
                # Check logged in user
                my @user_list = &get_logged_in_users;
                if( @user_list >= 1 ) {
@@ -400,7 +400,7 @@ sub trigger_action_reinstall {
     my ($msg, $msg_hash) = @_;
 
        # Check if user should be notificated or not
-       if ($userNotification eq "enabled") {
+       if ($userNotification eq "true") {
                # Check logged in user
                my @user_list = &get_logged_in_users;
                if( @user_list >= 1 ) {