Generate xunit reports (rally and tempest)
[functest.git] / functest / opnfv_tests / openstack / cinder / read_data.sh
1 #!/bin/sh -e
2
3 # Copyright (c) 2018 Enea AB and others
4
5 # This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10
11 DEST=$(mktemp -d)
12 VOL_DEV_NAME=${1:-vdb}
13 echo "VOL_DEV_NAME: $VOL_DEV_NAME"
14
15 echo "$(lsblk -l -o NAME)"
16 if [ ! -z $(lsblk -l -o NAME | grep $VOL_DEV_NAME) ]; then
17     sudo mount /dev/$VOL_DEV_NAME $DEST
18     if [ -f $DEST/new_data ]; then
19         echo "Found new data!"
20     else
21         echo "Failed to find data!"
22     exit 1
23     fi
24 fi
25
26 exit 0