diff --git a/debian/changelog b/debian/changelog index 80511d2..efdd751 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +dumb-init (0.3.0) unstable; urgency=low + + * Send TERM to all processes in the session when the primary child dies when + running in setsid mode. + + -- Chris Kuehl Fri, 18 Sep 2015 11:08:05 -0700 + dumb-init (0.2.0) unstable; urgency=low * Use setsid for process-group behavior. This fixes tty interaction. diff --git a/setup.py b/setup.py index 29fc74d..1dad9f9 100644 --- a/setup.py +++ b/setup.py @@ -38,6 +38,7 @@ def finalize_options(self): 'install', ('install_scripts', 'install_dir')) def run(self): + self.outfiles = self.copy_tree(self.build_dir, self.install_dir) def get_outputs(self): @@ -86,7 +87,7 @@ def get_outputs(self): setup( name='dumb-init', description='Simple wrapper script which proxies signals to a child', - version='0.2.0', + version='0.3.0', author='Yelp', platforms='linux',