mirror of
https://github.com/CumulusNetworks/ifupdown2.git
synced 2024-05-06 15:54:50 +00:00
Ticket: Reviewed By: Roopa Testing Done: Signed-off-by: Julien Fortin <julien@cumulusnetworks.com>
15 lines
401 B
Bash
15 lines
401 B
Bash
#! /bin/sh
|
|
set -e
|
|
case "$1" in
|
|
install|upgrade)
|
|
# workaround 3.0.0 internal install error. This can be removed in a
|
|
# few weeks.
|
|
if [ -f /etc/default/networking/networking.default ]; then
|
|
dpkg-maintscript-helper rm_conffile /etc/default/networking/networking.default 1.1 -- $@
|
|
rm -rf /etc/default/networking
|
|
fi
|
|
;;
|
|
esac
|
|
|
|
#DEBHELPER#
|