7 lines
142 B
Bash
Executable file
7 lines
142 B
Bash
Executable file
#!/bin/bash
|
|
if [ "$VIRTUALISATION" = "true" ]
|
|
then
|
|
nbd=__NBD_INDEX__
|
|
umount /dev/nbd$nbd
|
|
qemu-nbd --disconnect /dev/nbd$nbd
|
|
fi
|