Commit 92cadb30c0a1ed86d025aabb9824c7ef7508c8bd

Authored by hmalti
1 parent 0e551703

Suppresion flag debug

Showing 2 changed files with 0 additions and 3 deletions   Show diff stats
create_container.sh
1 1 #!/bin/bash
2   -set -x
3   -
4 2 while getopts i:c:b:r:a:p: o; do
5 3 case $o in
6 4 (i) NOM_IMAGE=$OPTARG;;
... ...
remove_container.sh
1 1 #!/bin/bash
2   -set -x
3 2 while getopts c: o; do
4 3 case $o in
5 4 (c) NAME_CONTAINER_TO_REMOVE=$OPTARG;;
... ...