Replace use of fgrep

It is deprecated.

Co-authored-by: Stephen Finucane <stephenfin@redhat.com>
Change-Id: I0cabbc1f27c7a9012241b3c71226d5abc1e8c199
Signed-off-by: Ivan Anfimov <lazekteam@gmail.com>
This commit is contained in:
Ivan Anfimov
2025-07-19 20:54:25 +00:00
parent c6780b86e0
commit 24eabd246f

View File

@@ -28,7 +28,7 @@ If a LVM backed Block Storage host needs to be shut down:
.. code-block:: console
# cat /home/user/running_instances | xargs -n1 nova show | fgrep vm_state
# cat /home/user/running_instances | xargs -n1 nova show | grep -F vm_state
#. Shut down the Block Storage host:
@@ -55,4 +55,4 @@ If a LVM backed Block Storage host needs to be shut down:
.. code-block:: console
# cat /home/user/running_instances | xargs -n1 nova start
# cat /home/user/running_instances | xargs -n1 nova show | fgrep vm_state
# cat /home/user/running_instances | xargs -n1 nova show | grep -F vm_state