The systemctl command was misspelled as "systemd" for the ovn-controller restart step, which would cause the command to fail for any user following the upgrade guide.
The ovn-ctl path for IC restart commands was still using the old pre-split path /usr/share/openvswitch/scripts/ instead of the correct /usr/share/ovn/scripts/. Other commands in the same document already used the correct path. Assisted-by: Claude Opus 4.6, OpenCode Signed-off-by: Ales Musil <[email protected]> --- Documentation/intro/install/ovn-upgrades.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Documentation/intro/install/ovn-upgrades.rst b/Documentation/intro/install/ovn-upgrades.rst index b67e34bf2..e4be8e9f4 100644 --- a/Documentation/intro/install/ovn-upgrades.rst +++ b/Documentation/intro/install/ovn-upgrades.rst @@ -133,7 +133,7 @@ ovn-controller service. You can restart with ovn-ctl:: or with systemd:: - $ sudo systemd restart ovn-controller + $ sudo systemctl restart ovn-controller Upgrade OVN Databases and ovn-northd ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -160,8 +160,8 @@ databases. You may perform this restart using the ovn-ctl script:: - $ sudo /usr/share/openvswitch/scripts/ovn-ctl restart_ic - $ sudo /usr/share/openvswitch/scripts/ovn-ctl restart_ic_ovsdb + $ sudo /usr/share/ovn/scripts/ovn-ctl restart_ic + $ sudo /usr/share/ovn/scripts/ovn-ctl restart_ic_ovsdb or if you're using a Linux distribution with systemd:: -- 2.54.0 _______________________________________________ dev mailing list [email protected] https://mail.openvswitch.org/mailman/listinfo/ovs-dev
