diff --git a/core-modules/005QubesNetVm.py b/core-modules/005QubesNetVm.py index 0ead7d43..69af2a86 100644 --- a/core-modules/005QubesNetVm.py +++ b/core-modules/005QubesNetVm.py @@ -154,7 +154,10 @@ class QubesNetVm(QubesVm): # force frontend to forget about this device # module actually will be loaded back by udev, as soon as network is attached - vm.run("modprobe -r xen-netfront xennet", user="root") + try: + vm.run("modprobe -r xen-netfront xennet", user="root") + except: + pass try: vm.attach_network(wait=False)