Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
perl5 /
Debian /
Debhelper /
Sequence /
Delete
Unzip
Name
Size
Permission
Date
Action
autoreconf.pm
189
B
-rw-r--r--
2021-02-04 11:26
autotools_dev.pm
332
B
-rw-r--r--
2022-01-31 14:43
bash_completion.pm
131
B
-rw-r--r--
2020-01-24 22:23
build_stamp.pm
280
B
-rw-r--r--
2023-01-02 14:54
dwz.pm
268
B
-rw-r--r--
2023-01-02 14:54
elf_tools.pm
281
B
-rw-r--r--
2023-01-02 14:54
installinitramfs.pm
330
B
-rw-r--r--
2023-01-02 14:54
installsysusers.pm
126
B
-rw-r--r--
2023-01-02 14:54
perl_dbi.pm
332
B
-rw-r--r--
2022-11-19 21:14
phpcomposer.pm
166
B
-rw-r--r--
2023-01-28 15:13
phppear.pm
158
B
-rw-r--r--
2023-01-28 15:13
root_sequence.pm
2.74
KB
-rw-r--r--
2023-01-02 14:54
single_binary.pm
1.64
KB
-rw-r--r--
2023-01-02 14:54
systemd.pm
610
B
-rw-r--r--
2023-01-02 14:54
xml_core.pm
139
B
-rw-r--r--
2019-02-27 00:18
Save
Rename
use strict; use warnings; use Debian::Debhelper::Dh_Lib qw(compat); use Debian::Debhelper::SequencerUtil; my $include_if_compat_X_or_newer = sub { my ($compat, @commands) = @_; return if compat($compat - 1, 1); return @commands; }; my @obsolete_command = ( [13, $include_if_compat_X_or_newer->(11, 'dh_systemd_enable', 'dh_systemd_start')], [14, 'dh_gconf'], ); my @commands_controlled_by_deb_build_options = ( $include_if_compat_X_or_newer->(13, ['dh_auto_test', 'nocheck'], ['dh_dwz', 'nostrip'], ['dh_strip', 'nostrip']), ); my @bd_minimal = qw{ dh_testdir }; my @bd = (@bd_minimal, qw{ dh_update_autotools_config dh_auto_configure dh_auto_build dh_auto_test }); my @i = (qw{ dh_testroot dh_prep dh_installdirs dh_auto_install dh_install dh_installdocs dh_installchangelogs dh_installexamples dh_installman dh_installcatalogs dh_installcron dh_installdebconf dh_installemacsen dh_installifupdown dh_installinfo dh_installinit }, $include_if_compat_X_or_newer->(14, 'dh_installsysusers'), $include_if_compat_X_or_newer->(13, 'dh_installtmpfiles'), $include_if_compat_X_or_newer->(11, 'dh_installsystemd'), $include_if_compat_X_or_newer->(12, 'dh_installsystemduser'), qw{ dh_installmenu dh_installmime dh_installmodules dh_installlogcheck dh_installlogrotate dh_installpam dh_installppp dh_installudev dh_installgsettings }, (!compat(11) ? qw(dh_installinitramfs) : qw()), (compat(13) ? qw(dh_installalternatives) : qw()), qw{ dh_bugfiles dh_ucf dh_lintian dh_icons dh_perl dh_usrlocal dh_link }, (!compat(13) ? qw(dh_installalternatives) : qw()), qw{ dh_installwm dh_installxfonts dh_strip_nondeterminism dh_compress dh_fixperms dh_missing }); # Looking for dh_dwz, dh_strip, dh_makeshlibs, dh_shlibdeps (et al)? They are # in the elf-tools addon. my @b=qw{ dh_installdeb dh_gencontrol dh_md5sums dh_builddeb }; _add_sequence('build', SEQUENCE_ARCH_INDEP_SUBSEQUENCES, @bd); _add_sequence('install', SEQUENCE_ARCH_INDEP_SUBSEQUENCES, to_rules_target("build"), @i); _add_sequence('binary', SEQUENCE_ARCH_INDEP_SUBSEQUENCES, to_rules_target("install"), @b); _add_sequence('clean', SEQUENCE_NO_SUBSEQUENCES, @bd_minimal, qw{ dh_auto_clean dh_clean }); for my $obsolete_command_spec (@obsolete_command) { my ($error_compat, @cmds) = @{$obsolete_command_spec}; for my $command (@cmds) { declare_command_obsolete($error_compat, $command); } } for my $entry (@commands_controlled_by_deb_build_options) { my ($command, $dbo_flag) = @{$entry}; # Dear reader; Should you be in doubt, then this is internal API that is # subject to change without notice. If you need this feature, please # make an explicit feature request, so we can implement a better solution. _skip_cmd_if_deb_build_options_contains($command, $dbo_flag); } 1;