8 lines
131 B
Bash
Executable File
8 lines
131 B
Bash
Executable File
#!/bin/bash
|
|
if [ "$VIRTUALISATION" = "true" ]
|
|
then
|
|
nbd=$1
|
|
umount /dev/nbd$nbd
|
|
qemu-nbd --disconnect /dev/nbd$nbd
|
|
fi
|