summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: acc823d)
raw | patch | inline | side by side (parent: acc823d)
author | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 16 Jan 2008 14:18:13 +0000 (14:18 +0000) | ||
committer | janw <janw@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Wed, 16 Jan 2008 14:18:13 +0000 (14:18 +0000) |
Corrected typo.
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8398 594d385d-05f5-0310-b6e9-bd551577e9d8
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@8398 594d385d-05f5-0310-b6e9-bd551577e9d8
diff --git a/gosa-si/debian/rules b/gosa-si/debian/rules
index ffc26f2c1f10814355bc937c9f14ac6ec0e02c5e..f54d5592ab937c0a19c42feb5223ebde834633c7 100755 (executable)
--- a/gosa-si/debian/rules
+++ b/gosa-si/debian/rules
done
-find debian/tmp -name '*.svn' -type d -exec rm -rf {} \; 2> /dev/null
- -for i in gosa-si-client gosa-si-server modules/GosaPackages.pm modules/ServerPackages.pm modules/TestModule.pm; do sed -i 's/use GosaSupportDaemon;/use GOSA::GosaSupportDaemon;/g;s/use DBsqlite;/use GOSA::DBsqlite;/g' debian/tmp/$$i; done
+ -for i in gosa-si-client gosa-si-server modules/GosaPackages.pm modules/ServerPackages.pm modules/TestModule.pm server/events/*; do sed -i 's/use GosaSupportDaemon;/use GOSA::GosaSupportDaemon;/g;s/use DBsqlite;/use GOSA::DBsqlite;/g' debian/tmp/$$i; done
-sed -i 's!"/etc/gosa-si/modules";!use lib "/usr/lib/gosa-si/modules";!g' debian/tmp/gosa-si-server
diff --git a/gosa-si/gosa-si-client b/gosa-si/gosa-si-client
index bd23dcd54ad01d292771257fffe66e40097f38c5..2e9fc52d79663b0cc40bfe2daeaa14633ce1b0b8 100755 (executable)
--- a/gosa-si/gosa-si-client
+++ b/gosa-si/gosa-si-client
my $header = @{$msg_hash->{header}}[0];
- daemon_log("recieve '$header' from $host", 1);
+ daemon_log("receive '$header' from $host", 1);
# daemon_log("header from msg:", 1);
# daemon_log("\t$header", 1);
# daemon_log("msg to process:", 7);
index 73dd6b26c68c1c5c15a137b571c2567d1aa6a1fa..ffc99840c0ca5496ac9c4dd00dff843449a42b22 100644 (file)
my $header = @{$msg_hash->{header}}[0];
- &main::daemon_log("GosaPackages: recieve '$header' from $host", 1);
+ &main::daemon_log("GosaPackages: receive '$header' from $host", 1);
my $out_msg;
if ($header =~ /^job_/) {
index 1aa8db2a82beb1f73298853dcfa16c31b80f61ee..80b34bb165178420f6cee4cbbf40c8c4b94b0573 100644 (file)
use Exporter;
@ISA = ("Exporter");
-# Each module has to have a function 'process_incoming_msg'. This function works as a interface to gosa-sd and recieves the msg hash from gosa-sd. 'process_incoming_function checks, wether it has a function to process the incoming msg and forward the msg to it.
+# Each module has to have a function 'process_incoming_msg'. This function works as a interface to gosa-sd and receives the msg hash from gosa-sd. 'process_incoming_function checks, wether it has a function to process the incoming msg and forward the msg to it.
use strict;
my $header = @{$msg_hash->{header}}[0];
my $source = @{$msg_hash->{source}}[0];
- &main::daemon_log("recieve '$header' at ServerPackages from $host", 1);
+ &main::daemon_log("receive '$header' at ServerPackages from $host", 1);
&main::daemon_log("ServerPackages: msg to process: \n$msg", 7);
my @targets = @{$msg_hash->{target}};