__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
#!/bin/sh
set -e
case "$1" in
configure)
# Remove the obsolete (unpackaged) netplan config file (if unmodified),
# or moved it to .dpkg-backup (if modified). This isn't done with
# dpkg-maintscripts because those require the prior version was owned
# by the package (and this file is owned by nothing).
NM_CONF="/etc/netplan/01-network-manager-all.yaml"
if [ -e "$NM_CONF" ]; then
if [ "$(md5sum "$NM_CONF" | cut -d" " -f1)" = "81c200b0e29eeb56c518a23eb78777ab" ]; then
rm -f "$NM_CONF"
else
echo "Moving modified $NM_CONF to .dpkg-backup" >&2
mv -f "$NM_CONF" "${NM_CONF}.dpkg-backup"
fi
fi
;;
esac
# Automatically added by dh_installdeb/13.18ubuntu1
dpkg-maintscript-helper rm_conffile /etc/lightdm/lightdm.conf.d/10-ubuntu.conf 14.04.0 -- "$@"
# End automatically added section