Files
webgui/plugins/dynamix.vm.manager/event/stopping_svcs
T
Eric Schultz 30ca111094 initial commit
2015-10-24 10:17:28 -07:00

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