Disable verbose output on normal run

This PS removes set -x from general runs so that all the commands
will not be thrown in output.

Change-Id: I8068e170d632518a93f5bf097d3a88cc3af01433
Signed-off-by: Sreejith Punnapuzha <sreejith.punnapuzha@outlook.com>
This commit is contained in:
Sreejith Punnapuzha 2020-01-06 14:06:06 -06:00
parent be8b82649b
commit 75ff355eec
4 changed files with 2 additions and 4 deletions

View File

@ -484,7 +484,6 @@ vol_create_disk() {
}
vm_create() {
set -x
NAME=${1}
DISK_OPTS="$(vm_create_vols "${NAME}")"
NETWORK_OPTS="$(vm_create_interfaces "${NAME}")"

View File

@ -15,7 +15,6 @@
# NOTE(mark-burnett): Keep trying to collect info even if there's an error
set +e
set -x
KUBECONFIG="${KUBECONFIG:-/etc/kubernetes/admin/kubeconfig.yaml}"
source "${GATE_UTILS}"

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
set -xe
set -e
source "${GATE_UTILS}"

View File

@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
set -xe
set -e
source "${GATE_UTILS}"