%PDF-1.4 %Óëéá 1 0 obj <> endobj 3 0 obj <> endobj 4 0 obj <
| Server IP : 212.252.79.165 / Your IP : 216.73.217.172 [ Web Server : Apache System : Linux 212-252-79-165.cprapid.com 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64 User : cehaburo ( 1001) PHP Version : 8.1.33 Disable Function : exec,passthru,shell_exec,system Domains : 48 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/cehaburo/public_html/images/product/anon_sym/anon/var/lib/dpkg/info/ |
Upload File : |
#!/bin/sh
fanatic_deconfigure()
{
fanctl config list | \
while read underlay overlay x
do
config_mine=$( fanctl config show -u "$underlay" -o "$overlay" | grep "comment='fanatic configured'" | wc -l )
if [ "$config_mine" != 0 ]; then
fanatic disable-lxd -u "$underlay" -o "$overlay"
fanatic disable-docker --no-docker-restart -u "$underlay" -o "$overlay"
fanatic disable-fan -u "$underlay" -o "$overlay"
fi
done
}
case "$1" in
remove)
# Deconfigure any fanatic built docker/LXD configuration.
fanatic_deconfigure
# Take down any fan mappings currently present.
fanctl down -e || exit 1
;;
esac
# Automatically added by dh_installinit/13.6ubuntu1
if [ -z "${DPKG_ROOT:-}" ] && [ "$1" = remove ] && [ -x "/etc/init.d/ubuntu-fan" ] ; then
invoke-rc.d ubuntu-fan stop || exit 1
fi
# End automatically added section