Blame view

down_bridge.sh 321 Bytes
3e470988   hmalti   First commit
1
  #!/bin/bash
5721892d   hmalti   Avancées
2
3
4
5
6
  while getopts b: o; do
      case $o in
          (b) NOM_BRIDGE=$OPTARG;;   
      esac
  done
3e470988   hmalti   First commit
7
8
9
10
11
  #vérification que l'utilisateur donne bien un nom à l'image
  if [[ -z "$NOM_BRIDGE" ]]; then 
    echo "Il faut donner le nom du bridge Relancez la commande avec les bons arguments."
    exit
  fi
055618a3   hmalti   Ajout hash interf...
12
  
3e470988   hmalti   First commit
13
  ip link set $NOM_BRIDGE down