Initial commit
[ta/infra-ansible.git] / roles / partfs_rootdisk / scripts / old_vol_rm.sh
1 #!/bin/bash
2
3 # Copyright 2019 Nokia
4
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 #     http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16
17 exec >> /tmp/old_vol_rm_logfile
18 exec 2>&1
19
20 lvm_paths=`lvs --noheadings -o vg_name,lvname,lv_dmpath`
21
22 if [[ $lvm_paths ]];then
23
24   echo "Already available lvm_paths:"
25   echo "$lvm_paths"
26
27   while read -r -a lvm_path; do
28     grep ${lvm_path[2]} /etc/fstab > /dev/null 2>&1
29     if [[ $? != 0 ]];then
30       lvm_rm_path=`echo ${lvm_path[0]}/${lvm_path[1]}`
31       echo "Removing LVM $lvm_rm_path"
32       sudo lvremove -f $lvm_rm_path
33     fi
34   done
35
36 else
37     echo "No logical volumes to remove (lvm_paths: \"${lvm_paths}\")."
38     exit 0
39 fi <<< "$lvm_paths"