-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /proc/thread-self/root/var/lib/dpkg/info/
File Upload :
Current File : //proc/thread-self/root/var/lib/dpkg/info/debconf.prerm

#!/bin/sh
set -e

# copied from /usr/share/debhelper/autoscripts/prerm-python for now
dpkg -L debconf |
	awk '$0~/\.py$/ {print $0"c\n" $0"o"}' |
	xargs rm -f >&2


# Automatically added by dh_python2:
if which pyclean >/dev/null 2>&1; then
	pyclean -p debconf 
else
	dpkg -L debconf | grep \.py$ | while read file
	do
		rm -f "${file}"[co] >/dev/null
  	done
fi

# End automatically added section

# Automatically added by dhpython:
if which py3clean >/dev/null 2>&1; then
	py3clean -p debconf 
else
	dpkg -L debconf | perl -ne 's,/([^/]*)\.py$,/__pycache__/\1.*, or next; unlink $_ or die $! foreach glob($_)'
	find /usr/lib/python3/dist-packages/ -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir
fi

# End automatically added section


exit 0

Copyright © 2017 || Recoded By Mr.Bumblebee