Open Zarquan opened 1 year ago
Based on the entries in /etc/fstab it look like /dev/vdb is mounted twice, once by cloudconfig (possibly cloudinit?) as /mnt and again by our deployment as /mnt/local/vdb.
/etc/fstab
/dev/vdb
cloudconfig
cloudinit
/mnt
/mnt/local/vdb
UUID=b1438b9b-2cab-4065-a99a-08a96687f73c / ext4 defaults 1 1 /dev/vdb /mnt auto defaults,nofail,comment=cloudconfig 0 2 /dev/vdb /mnt/local/vdb ext4 defaults 0 0 /dev/vdc /mnt/cinder/vdc btrfs defaults 0 0 .... ....
This results in confused paths like this: /mnt/local/vdb/cinder/vdc/
/mnt/local/vdb/cinder/vdc/
Based on the entries in
/etc/fstab
it look like/dev/vdb
is mounted twice, once bycloudconfig
(possiblycloudinit
?) as/mnt
and again by our deployment as/mnt/local/vdb
.