ispman/tasks execVhostActions_task.pl,1.1,1.2
Joerg Delker <[email protected]> Sat, 03 Jan 2009 16:02:02 +0000
| Newsgroups | gmane.comp.isp.ispman.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/ispman/ispman/tasks
In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv23748/tasks
Added Files:
execVhostActions_task.pl
Log Message:
added missing task from rel_1_4-bugfixes
--- NEW FILE: execVhostActions_task.pl ---
sub execVhostActions_task {
my $params = shift;
unless ( $params->{'ispmanDomain'} ) {
print STDERR "ispmanDomain not defined. Cannot continue\n";
return 0;
}
unless ( $params->{'script'} ) {
print STDERR "script not defined. Cannot continue\n";
return 0;
}
push @cmd, $ispman->getConf("installDir")."/tasks/".$params->{'script'}
. " " . $params->{'uidNumber'};
}
------------------------------------------------------------------------------