OXIESEC PANEL
- Current Dir:
/
/
usr
/
share
/
perl5
/
Debian
/
Debhelper
/
Sequence
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/28/2024 06:50:08 AM
rwxr-xr-x
📄
autoreconf.pm
189 bytes
03/21/2018 10:43:37 PM
rw-r--r--
📄
autotools_dev.pm
332 bytes
02/24/2018 04:00:57 PM
rw-r--r--
📄
bash_completion.pm
131 bytes
04/02/2018 02:16:46 AM
rw-r--r--
📄
build_stamp.pm
311 bytes
05/10/2018 09:11:57 AM
rw-r--r--
📄
dwz.pm
242 bytes
05/10/2018 09:11:57 AM
rw-r--r--
📄
perl_dbi.pm
332 bytes
02/14/2018 07:34:50 PM
rw-r--r--
📄
pypy.pm
161 bytes
03/26/2018 07:42:23 PM
rw-r--r--
📄
python3.pm
167 bytes
03/26/2018 07:42:23 PM
rw-r--r--
📄
python_support.pm
241 bytes
05/10/2018 09:11:57 AM
rw-r--r--
📄
systemd.pm
593 bytes
05/10/2018 09:11:57 AM
rw-r--r--
Editing: systemd.pm
Close
#!/usr/bin/perl use warnings; use strict; use Debian::Debhelper::Dh_Lib; if (not compat(10)) { error("The systemd-sequence is no longer provided in compat >= 11, please rely on dh_installsystemd instead"); } # dh_systemd_enable runs unconditionally, and before dh_installinit, so that # the latter can use invoke-rc.d and all symlinks are already in place. insert_before("dh_installinit", "dh_systemd_enable"); # dh_systemd_start handles the case where there is no corresponding init # script, so it runs after dh_installinit. insert_after("dh_installinit", "dh_systemd_start"); 1