Thread Script als Dämon starten: Scriptanpassung zu einem Dämon (6 answers)
Opened by Gast at 2006-08-25 16:00

esskar
 2006-08-28 18:59
#69249 #69249
User since
2003-08-04
7321 Artikel
ModeratorIn

user image
z.b. ja

hab es so gelöst

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package MyDaemon;

# ...

sub run {
my $self = shift;

unless($^O eq 'MSWin32') {
# run as real daemon - but not under windows
require Proc::Daemon;
Proc::Daemon::Init();
}

}

1;

View full thread Script als Dämon starten: Scriptanpassung zu einem Dämon