mirror of
https://github.com/unraid/webgui.git
synced 2026-01-01 06:59:56 -06:00
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# delete the libvirt image file
|
|
if [ -f /boot/config/domain.cfg ]; then
|
|
. /boot/config/domain.cfg
|
|
if [ "${IMAGE_FILE}" != "" -a -f "${IMAGE_FILE}" ]; then
|
|
echo "Deleting ${IMAGE_FILE} ..."
|
|
rm "${IMAGE_FILE}"
|
|
fi
|
|
fi
|