Remove redundant resource order

The puppet-vswitch module already makes sure that the vs_config
resource automatically requires the openvswitch service. Thus defining
the same order is not necessary.

Change-Id: I8825a7438ba20be97da71acabd57604e7948e130
This commit is contained in:
Takashi Kajinami 2022-08-29 18:19:36 +09:00
parent 3055bbc5aa
commit a377b36494
1 changed files with 2 additions and 1 deletions

View File

@ -255,5 +255,6 @@ class ovn::controller(
'vs_config',
merge($config_items, $cms_options, $encap_tos, $chassis_mac_map, $bridge_items, $tz_items, $datapath_config, $ovn_match_northd)
)
Service['openvswitch'] -> Vs_config<||> -> Service['controller']
Vs_config<||> -> Service['controller']
}