ec4efbe1bb
Change-Id: I96c10740f299ddc4bccdd7f538cf1417c8a09ea2
11 lines
152 B
Bash
Executable File
11 lines
152 B
Bash
Executable File
#!/bin/sh -e
|
|
# manila-pre-extend <cookie>
|
|
|
|
NUM=$1
|
|
|
|
UUID=$(cat /metadata/$NUM/UUID)
|
|
sed "/$UUID/d" -i /etc/fstab
|
|
|
|
MNT_PATH=/shares/$NUM
|
|
umount $MNT_PATH
|