mirror of
https://github.com/unraid/webgui.git
synced 2026-04-23 10:38:50 -05:00
12 lines
202 B
Bash
Executable File
12 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Shutdown libvirt
|
|
if [ -x /etc/rc.d/rc.libvirt ]; then
|
|
echo "Stopping libvirt..."
|
|
/etc/rc.d/rc.libvirt stop |& logger
|
|
fi
|
|
|
|
if [ "$(mount | grep domain.img)" ]; then
|
|
umount /etc/libvirt
|
|
fi
|