]>
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 ################################################################################
19 ################################################################################
27 sub VERSION
{(q
$Revision$ =~ /([\d.]+)\s*$/)[0] or '0.0'}
29 ################################################################################
33 use base
qw(Exporter);
34 @EXPORT = qw(start_severance);
36 ### win32_start () #############################################################
49 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
());
62 ### posix_start () #############################################################
78 unless (defined $pid) {
79 warn "Could not fork severance process: $!";
82 unless (POSIX
::setsid
()) {
83 warn "Could not create new severancer session: $!";
87 warn "could not execute severancer: $!"
92 ### start_severance () #########################################################
94 # start the severance script as a new process (group)
96 # Params: $app - /path/to/fo_sev.pl
100 sub start_severance
($) {
106 $OS = $Config::Config
{osname
};
109 if ($OS =~ /win32/i) {
119 # keep 'require' happy
124 ### end of Arc::Starter ########################################################
patrick-canterino.de