diff --git a/osbuild/devices.py b/osbuild/devices.py index 1b5294ab..7546c73e 100644 --- a/osbuild/devices.py +++ b/osbuild/devices.py @@ -80,5 +80,8 @@ class DeviceService(host.Service): if method == "open": r = self.open(args["dev"], args["tree"], args["options"]) return r, None + if method == "close": + r = self.close() + return r, None raise host.ProtocolError("Unknown method")