Source: python-daemonize
Section: python
Priority: extra
Maintainer: MOS Linux team <mos-linux@mirantis.com>
Build-Depends:
 cdbs (>= 0.4.90~),
 debhelper (>= 9),
 python (>= 2.7.1),
 python-setuptools,
Standards-Version: 3.9.5
Homepage: http://pypi.python.org/pypi/daemonize
X-Python-Version: >= 2.7

Package: python-daemonize
Architecture: all
Depends:
 ${misc:Depends},
 ${python:Depends},
Description: Python module for writing system daemons
 The daemonize module provides a simple class (Daemonize) that
 handles forking a sub-fraction of your Python script to background.
 .
 It takes care of:
    - changing the applications directory to '/'
    - setting umask 0027 for root daemons
    - creating a locked PID file
    - closing open file descriptors
    - removing PID file on daemon exit
    - handling SIGTERM signals
    - logging daemon actions to /dev/log
