File: control

package info (click to toggle)
libapp-control-perl 1.07-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 92 kB
  • sloc: perl: 281; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 1,339 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Source: libapp-control-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Damyan Ivanov <dmn@debian.org>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/libapp-control-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/libapp-control-perl.git
Homepage: https://metacpan.org/release/App-Control
Rules-Requires-Root: no

Package: libapp-control-perl
Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends},
         ${perl: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.