Просмотр исходного кода

Ignore ifdown failres (might be down anyway).

Signed-off-by: Maximilian Wilhelm <max@rfc2324.org>
Maximilian Wilhelm 7 лет назад
Родитель
Сommit
7ed21b9393
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      batman/ff_fix_batman

+ 1 - 1
batman/ff_fix_batman

@@ -39,7 +39,7 @@ logger -t "${my_name}" "${msg}"
 
 # Be safe and shutdown all batman interfaces before removing the module
 for iface in $(ip l | awk -F: '/^[0-9]/ { print $2 }' | tr -d ' ' | grep ^bat); do
-	ifdown "${iface}"
+	ifdown "${iface}" || true
 done
 
 if lsmod | grep batman-adv; then