diff --git a/man/virt-install.pod b/man/virt-install.pod index 2a46cad8d..7ff87e011 100644 --- a/man/virt-install.pod +++ b/man/virt-install.pod @@ -1349,11 +1349,6 @@ for the B controller, B or B for the B controller. For full list and further details on controllers/models, see C. -=item B
- -Shorthand for setting a manual PCI address from an lscpi style string. -The preferred method for setting this is using the address.* parameters. - =item B A decimal integer describing in which order the bus controller is diff --git a/virtinst/cli.py b/virtinst/cli.py index a7b1257bc..d7ad05976 100644 --- a/virtinst/cli.py +++ b/virtinst/cli.py @@ -3498,6 +3498,9 @@ class ParserController(VirtCLIParser): ################### def set_address_cb(self, inst, val, virtarg): + # Convenience option for address= PCI parsing. This pattern should + # not be extended IMO, make users manually specify the address + # fields they need addrstr = val if addrstr.count(":") in [1, 2] and "." in addrstr: inst.address.type = inst.address.ADDRESS_TYPE_PCI