File: control

package info (click to toggle)
libapp-control-perl 1.02-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, lenny, squeeze, wheezy
  • size: 64 kB
  • ctags: 11
  • sloc: perl: 281; makefile: 43
file content (24 lines) | stat: -rw-r--r-- 1,235 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Source: libapp-control-perl
Section: perl
Priority: optional
Build-Depends: debhelper (>= 5.0.0)
Build-Depends-Indep: perl (>= 5.8.8-7)
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Standards-Version: 3.7.3
Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libapp-control-perl/
Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libapp-control-perl/
Homepage: http://search.cpan.org/dist/App-Control

Package: libapp-control-perl
Architecture: all
Depends: ${perl:Depends}, ${misc:Depends}
Description: Perl module for apachectl style control of another executable
 App::Control is a simple module to replicate the kind of functionality you get
 with apachectl to control apache, but for any script or executable. There is a
 very simple OO interface, where the constructor is used to specify the
 executable, command line arguments, and pidfile, and various methods (start,
 stop, etc.) are used to control the executable in the obvious way.  The module
 is intended to be used in a simple wrapper control script. Currently the
 module does a fork and exec to start the executable, and sets the signal
 handler for SIGCHLD to 'IGNORE' to avoid zombie processes.