summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: cd74a99)
raw | patch | inline | side by side (parent: cd74a99)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 26 Mar 2008 18:10:05 +0000 (18:10 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 26 Mar 2008 18:10:05 +0000 (18:10 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10004 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/client/events/gosaTriggered.pm | patch | blob | history |
index cf364b4dd7409b2e15ce4440da3953bd7fa85797..9e57a5460aa794d0f90c5d514ef5ae6a21b236b5 100644 (file)
my $timeout;
if((not exists $msg_hash->{timeout} ) || (1 != @{$msg_hash->{timeout}} ) ) {
- $timeout = -1;
+ $timeout = 0;
}
else {
$timeout = @{$msg_hash->{timeout}}[0];
# check logged in user
my @user_list = &get_logged_in_users;
if( @user_list >= 1 ) {
- # TODO do something
- }
- else {
- $timeout = 0;
- }
-
- # execute function
- if( $timeout == 0 ) {
- print STDERR ("shutdown -r +$timeout\n");
- }
- elsif( $timeout > 0 ) {
- print STDERR ("shutdown -r +$timeout\n");
- }
- elsif( $timeout < 0 ) {
- print STDERR "The administrator has sent a signal to reboot this workstation. It will reboot after you've logged out.\n";
+ system( "/usr/bin/goto-notify reboot" );
open(FILE, "> /etc/gosa-si/event");
- print FILE "trigger_action_reboot\n";
+ print FILE "reboot\n";
close(FILE);
}
else {
- # TODO do something, error handling, logging
+ system( "/sbin/shutdown -r +$timeout &" );
}
return;
-
-
-
-
- print STDERR "jetzt würde ich trigger_action_reboot ausführen\n";
- return;
}
my $timeout;
if((not exists $msg_hash->{timeout} ) || (1 != @{$msg_hash->{timeout}} ) ) {
- $timeout = -1;
+ $timeout = 0;
}
else {
$timeout = @{$msg_hash->{timeout}}[0];
}
# check logged in user
- my $logged_in_user = 1;
- if( $logged_in_user ) {
- # TODO do something
- }
- else {
- $timeout = 0;
- }
-
- # execute function
- if( $timeout == 0 ) {
- print STDERR ("shutdown -h +$timeout\n");
- }
- elsif( $timeout > 0 ) {
- print STDERR ("shutdown -h +$timeout\n");
- }
- elsif( $timeout < 0 ) {
- print STDERR "The administrator has sent a signal to shutdown this workstation. It will shutdown after you've logged out.\n";
+ my @user_list = &get_logged_in_users;
+ if( @user_list >= 1 ) {
+ system( "/usr/bin/goto-notify halt" );
open(FILE, "> /etc/gosa-si/event");
- print FILE "trigger_action_halt\n";
+ print FILE "halt\n";
close(FILE);
}
else {
- # TODO do something, error handling, logging
+ system( "/sbin/shutdown -h +$timeout &" );
}
return;
}
-# TODO
-sub trigger_action_memcheck {
- my ($msg, $msg_hash) = @_ ;
- print STDERR "\n\njetzt würde ich trigger_action_memcheck ausführen\n\n";
- return;
-}
-
-
sub trigger_action_reinstall {
my ($msg, $msg_hash) = @_;
- my $timeout;
-
- # check timeout
- if((not exists $msg_hash->{timeout} ) || (1 != @{$msg_hash->{timeout}} ) ) {
- $timeout = -1;
- }
- else {
- $timeout = @{$msg_hash->{timeout}}[0];
- }
# check logged in user
- my $logged_in_user = 1;
- if( $logged_in_user ) {
- # TODO do something
- }
- else {
- $timeout = 0;
- }
-
- # execute function
- if( $timeout == 0 ) {
- print STDERR ("shutdown -r +$timeout\n");
- }
- elsif( $timeout > 0 ) {
- print STDERR ("shutdown -r +$timeout\n");
-
- }
- elsif( $timeout < 0 ) {
- print STDERR "The administrator has sent a signal to reinstall this workstation. It will reinstall after you've logged out.\n";
+ my @user_list = &get_logged_in_users;
+ if( @user_list >= 1 ) {
+ system( "/usr/bin/goto-notify install" );
open(FILE, "> /etc/gosa-si/event");
- print FILE "trigger_action_reinstall\n";
+ print FILE "install\n";
close(FILE);
}
else {
- # TODO do something, error handling, logging
+ system( "/sbin/shutdown -r now &" );
}
return;
}
-# TODO
-sub trigger_action_sysinfo {
- my ($msg, $msg_hash) = @_;
- print STDERR "jetzt würde ich trigger_action_sysinfo ausführen\n";
- return;
-}
-
-# TODO
-sub trigger_action_rescan{
- my ($msg, $msg_hash) = @_;
- print STDERR "jetzt würde ich trigger_action_rescan ausführen\n";
- return;
-}
-
1;