diff options
| author | Michael Biebl <biebl@debian.org> | 2017-05-11 16:15:25 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-05-11 17:01:39 +0200 |
| commit | 30116e4a21985cc5a5a22b70ee9804bc14172242 (patch) | |
| tree | de0600868ce88eba6026934505b510a4a32306c0 | |
| parent | 2a687c124610a68e08ea4fe6b58d5756003ffea9 (diff) | |
Drop obsolete ifblacklist_migrate.sh script
It's been unused since wheezy.
| -rw-r--r-- | debian/ifblacklist_migrate.sh | 66 | ||||
| -rwxr-xr-x | debian/rules | 2 |
2 files changed, 0 insertions, 68 deletions
diff --git a/debian/ifblacklist_migrate.sh b/debian/ifblacklist_migrate.sh deleted file mode 100644 index c30971c2..00000000 --- a/debian/ifblacklist_migrate.sh +++ /dev/null @@ -1,66 +0,0 @@ -#!/bin/sh - -# (C) 2007 Canonical Ltd. -# Author: Alexander Sack <asac@jwsdot.com> -# License: GNU General Public License, version 2 or any later version - -if test x$NIF_FILE = x; then - NIF_FILE=/etc/network/interfaces -fi - -auto_ifs=$(cat $NIF_FILE | \ - egrep "^auto|^allow-" | \ - sed -e 's/auto//' | \ - sed -e 's/allow-[^ ].* //') - -ifaces_to_disable="" - -echo Auto interfaces found: $auto_ifs - -# iterate over all auto interfaces -for i in $auto_ifs; do - IFS_old=$IFS; IFS="" - - NIF_FILE_content=$(cat $NIF_FILE | \ - sed -e 's/^[ \t]*auto.*$//' | \ - sed -e 's/^[ \t]*allow-.*$//' | \ - sed -e 's/^[ \t]*#.*$//' | grep -v ^$) - - # '--' is inserted by grep -A1 if there are multiple iface blocks - lines=$(echo $NIF_FILE_content | grep -A1 "^iface.*$i.*dhcp" | grep -v '\--') - IFS=" -" - - # if there is no iface line for that interface, we would still get a line - # count of 1 ... so use word_count 0 below to exclude ifaces that have no - # configuration at all. - word_count=$(echo $lines | wc -w) - line_count=0 - for line in $lines; do - nulled_line=$(echo "$line" | sed -e 's/[# ]//' | grep -v ^iface) - if test x$nulled_line != x; then - line_count=$(expr $line_count + 1) - fi - done - - if test $line_count -eq 0 -a $word_count -gt 0; then - ifaces_to_disable="$ifaces_to_disable $i" - echo iface to disable = $i - fi - IFS=$IFS_old -done - -backup_suffix=0 -while test -e ${NIF_FILE}.bak-${backup_suffix}; do - backup_suffix=$(expr $backup_suffix + 1) -done - -if [ -n "$ifaces_to_disable" ]; then - cp $NIF_FILE "$NIF_FILE.bak-${backup_suffix}" - for i in $ifaces_to_disable; do - echo -n "Disabling interface: $i ... " - sed -i -e "s/^\([ \t]*iface.*[ \t]$i[ \t].*\)$/#NetworkManager#\1/" $NIF_FILE - echo done. - done -fi - diff --git a/debian/rules b/debian/rules index 39402def..594db100 100755 --- a/debian/rules +++ b/debian/rules @@ -53,8 +53,6 @@ override_dh_install: dh_install -X.la --list-missing install -m 755 debian/network-manager-dispatcher.script \ debian/network-manager/etc/NetworkManager/dispatcher.d/01ifupdown - install -m 755 debian/ifblacklist_migrate.sh \ - debian/network-manager/usr/lib/NetworkManager override_dh_makeshlibs: dh_makeshlibs -X/usr/lib/$(DEB_HOST_MULTIARCH)/NetworkManager/ -X/usr/lib/pppd/ |