summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: ba23158)
raw | patch | inline | side by side (parent: ba23158)
author | opensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Sat, 27 Mar 2010 23:24:28 +0000 (23:24 +0000) | ||
committer | opensides <opensides@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Sat, 27 Mar 2010 23:24:28 +0000 (23:24 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@17317 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-si/client/events/installation.pm | patch | blob | history |
index 9a5fa786ad1f8f9620320b81521b94a21ea5a3a7..700adc5a193870f0eaf93fa0ff17b122f0503931 100644 (file)
package installation;
-use Exporter;
-@ISA = qw(Exporter);
-my @events = qw(get_events set_activated_for_installation);
-@EXPORT = @events;
use strict;
use warnings;
+
+use Exporter;
use Fcntl;
+@ISA = qw(Exporter);
+my @events = qw(get_events set_activated_for_installation);
+@EXPORT = @events;
+
BEGIN {}
END {}
my $source = @{$msg_hash->{'source'}}[0];
my $Datei = "/var/run/gosa-si-client.activated";
- open(DATEI, ">$Datei");
- print DATEI "$msg\n";
- close DATEI;
+ open($FILE, ">", "$Datei");
+ print $FILE "$msg\n";
+ close $FILE;
return;
}