diff options
Diffstat (limited to 'app-emulation/libvirt/files/libvirt-guests.init')
-rw-r--r-- | app-emulation/libvirt/files/libvirt-guests.init | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app-emulation/libvirt/files/libvirt-guests.init b/app-emulation/libvirt/files/libvirt-guests.init index 2b63dea6dce9..c38a0f005a9f 100644 --- a/app-emulation/libvirt/files/libvirt-guests.init +++ b/app-emulation/libvirt/files/libvirt-guests.init @@ -179,6 +179,9 @@ start() { [ ! -e "${netstatefile}" ] && touch "${netstatefile}" [ ! -e "${gueststatefile}" ] && touch "${gueststatefile}" + # if the user didn't want to start any guests up then respect their wish + [ "x${LIBVIRT_START}" = "xno" ] && return 0 + # start networks ebegin "Starting libvirt networks" while read -r line |