summaryrefslogtreecommitdiff
path: root/runit.pm
diff options
context:
space:
mode:
authorDmitry Bogatov <KAction@gnu.org>2016-06-04 16:22:47 +0300
committerDmitry Bogatov <KAction@gnu.org>2016-06-04 16:22:47 +0300
commitdc74a67ae5e1e13b8fb815236dd8efdfce962ba0 (patch)
treec8a1a1425f1e412f310eca651b303d6c3092fd39 /runit.pm
Initial commit
Diffstat (limited to 'runit.pm')
-rw-r--r--runit.pm11
1 files changed, 11 insertions, 0 deletions
diff --git a/runit.pm b/runit.pm
new file mode 100644
index 0000000..d434d1b
--- /dev/null
+++ b/runit.pm
@@ -0,0 +1,11 @@
1#!/usr/bin/perl
2use warnings;
3use strict;
4use Debian::Debhelper::Dh_Lib;
5
6# dh_runit installs scripts as provided by source package. It would
7# be nice to maintainers to allow them to not worry about executable
8# bit.
9insert_before('dh_fixperms', 'dh_runit');
10
111;