Blame view

remove_bridge.sh 462 Bytes
3e470988   hmalti   First commit
1
  #!/bin/bash
17bfc359   hmalti   Help Image+contai...
2
3
4
5
6
  while getopts b: o; do
      case $o in
          (b) NAME_BRIDGE_TO_REMOVE=$OPTARG;;   
      esac
  done
3e470988   hmalti   First commit
7
  #vérification que l'utilisateur donne bien un nom à l'image
5721892d   hmalti   Avancées
8
  if [[ -z "$NAME_BRIDGE_TO_REMOVE" ]]; then 
3e470988   hmalti   First commit
9
10
11
    echo "Il faut donner le nom du bridge à supprimer ! Relancez la commande avec les bons arguments."
    exit
  fi
5721892d   hmalti   Avancées
12
13
14
15
  
  rm $PATH_MANIFEST/bridges/$NAME_BRIDGE_TO_REMOVE.manifest
  ip link set $NAME_BRIDGE_TO_REMOVE down
  brctl delbr $NAME_BRIDGE_TO_REMOVE