dumb-init/debian/control

35 lines
1.2 KiB
Text
Raw Normal View History

2015-07-30 02:03:55 +03:00
Source: dumb-init
Section: utils
Priority: extra
Maintainer: Chris Kuehl <ckuehl@yelp.com>
Uploaders: Kent Wills <rkwills@yelp.com>
Build-Depends:
debhelper (>= 9),
help2man,
## Tests:
python,
python-pytest,
python-mock,
Standards-Version: 3.9.7
Homepage: https://github.com/Yelp/dumb-init
Vcs-Browser: https://github.com/Yelp/dumb-init
Vcs-Git: https://github.com/Yelp/dumb-init.git
2015-07-30 02:03:55 +03:00
Package: dumb-init
Architecture: any
Depends: ${misc:Depends}
Description: wrapper script which proxies signals to a child
dumb-init is a simple process supervisor and init system designed to run
as PID 1 inside minimal container environments (such as Docker).
2015-07-30 02:03:55 +03:00
.
Lightweight containers have popularized the idea of running a single
process or service without normal init systems like systemd or sysvinit.
However, omitting an init system often leads to incorrect handling of
processes and signals, and can result in problems such as containers
which can't be gracefully stopped, or leaking containers which should
have been destroyed.
2015-07-30 02:03:55 +03:00
.
dumb-init acts as PID 1 and immediately spawns your command as a child
process, taking care to properly handle and forward signals as they are
received.