⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.30
Server IP:
45.79.8.107
Server:
Linux localhost 5.15.0-140-generic #150-Ubuntu SMP Sat Apr 12 06:00:09 UTC 2025 x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.2-1ubuntu2.21
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
lib
/
dpkg
/
info
/
View File Name :
libnginx-mod-http-xslt-filter.postinst
#!/bin/sh set -e # Automatically added by dh_nginx/UNDECLARED for confpair in mod-http-xslt-filter.conf:50-mod-http-xslt-filter.conf ; do from=$(echo $confpair | cut -d: -f1) to=$(echo $confpair | cut -d: -f2) if [ -L /etc/nginx/modules-enabled/$to.removed ]; then rm /etc/nginx/modules-enabled/$to.removed removed_link=true else removed_link=false fi # Symlink on # 1) Fresh installations # 2) Reinstalls after automatic removes (preserve admin actions) if [ -z "$2" -o "$removed_link" = "true" ]; then ln -sf /usr/share/nginx/modules-available/$from \ /etc/nginx/modules-enabled/$to fi done if [ "$1" = "configure" ] ; then if which dpkg-trigger >/dev/null 2>&1 ; then dpkg-trigger --no-await nginx-reload fi fi # End automatically added section