Merge "Fix minor grammar issues in the help for new inspector options"

This commit is contained in:
Zuul 2023-09-12 14:45:24 +00:00 committed by Gerrit Code Review
commit eae2b1260a
1 changed files with 5 additions and 3 deletions

View File

@ -20,13 +20,15 @@ from ironic.conf import auth
VALID_ADD_PORTS_VALUES = {
'all': _('all MAC addresses'),
'active': _('MAC addresses of NIC\'s with IP addresses'),
'active': _('MAC addresses of NICs with IP addresses'),
'pxe': _('only the MAC address of the PXE NIC'),
'disabled': _('do not create any ports'),
}
VALID_KEEP_PORTS_VALUES = {
'all': _('keep even ports with MAC\'s not present in the inventory'),
'present': _('keep only ports with MAC\'s present in the inventory'),
'all': _('keep all ports, even ones with MAC addresses that are not '
'present in the inventory'),
'present': _('keep only ports with MAC addresses present in '
'the inventory'),
'added': _('keep only ports determined by the add_ports option'),
}