]>
git.p6c8.net - selfforum.git/blob - selfforum-cgi/shared/Arc/Starter.pm
3 ################################################################################
5 # File: shared/Arc/Starter.pm #
7 # Authors: André Malo <nd@o3media.de> #
9 # Description: start severancer and archiver #
11 ################################################################################
18 ################################################################################
26 sub VERSION
{(q
$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
28 ################################################################################
32 use base
qw(Exporter);
33 @EXPORT = qw(start_severance);
35 ### win32_start () #############################################################
48 require Win32
::Process
; Win32
::Process
-> import
('NORMAL_PRIORITY_CLASS', 'DETACHED_PROCESS');
52 Win32::Process::Create(
57 NORMAL_PRIORITY_CLASS | DETACHED_PROCESS,
59 ) or warn 'could not execute severancer: '.Win32::FormatMessage(Win32::GetLastError());
63 ### posix_start () #############################################################
79 unless (defined $pid) {
80 warn "Could not fork severance process: $!";
83 unless (POSIX::setsid()) {
84 warn "Could not create new severancer session: $!";
88 warn "could not execute severancer: $!"
93 ### start_severance () #########################################################
95 # start the severance script as a new process (group)
97 # Params: $app - /path/to/fo_sev.pl
101 sub start_severance ($) {
107 $OS = $Config::Config{osname};
110 if ($OS =~ /win32/i) {
120 # keep 'require' happy
125 ### end of Arc::Starter ########################################################
patrick-canterino.de