Skip to content

Commit

Permalink
- Remove use_option for DHCP option 60 (#104)
Browse files Browse the repository at this point in the history
- Fixes: #25
  • Loading branch information
badnetmask authored Jan 28, 2022
1 parent 30492ad commit 4212a41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/nios_network.py
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ def check_vendor_specific_dhcp_option(module, ib_spec):
if isinstance(module.params[key], list):
for temp_dict in module.params[key]:
if 'num' in temp_dict:
if temp_dict['num'] in (43, 124, 125, 67):
if temp_dict['num'] in (43, 124, 125, 67, 60):
del temp_dict['use_option']
return ib_spec

Expand Down

0 comments on commit 4212a41

Please sign in to comment.