From e589713da8db262438c79527e0057917c4507192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20T=C3=B3th?= Date: Thu, 15 Apr 2021 10:26:06 +0200 Subject: [PATCH 1/2] fixed service restarting commands --- engine/install/linux-postinstall.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/install/linux-postinstall.md b/engine/install/linux-postinstall.md index dde956d97e..cec124e8e7 100644 --- a/engine/install/linux-postinstall.md +++ b/engine/install/linux-postinstall.md @@ -410,8 +410,8 @@ IP address, follow these instructions to disable `dnsmasq` in NetworkManager. your system. ```console - $ sudo restart network-manager - $ sudo restart docker + $ sudo systemctl restart network-manager + $ sudo systemctl restart docker ``` ##### RHEL, CentOS, or Fedora From 464b1c03c9c8b9d58b3eaca1b6a810996ca97088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adri=C3=A1n=20T=C3=B3th?= Date: Thu, 15 Apr 2021 10:55:36 +0200 Subject: [PATCH 2/2] fixed command inconsistency --- engine/install/linux-postinstall.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/engine/install/linux-postinstall.md b/engine/install/linux-postinstall.md index cec124e8e7..72a90f4c84 100644 --- a/engine/install/linux-postinstall.md +++ b/engine/install/linux-postinstall.md @@ -421,8 +421,7 @@ To disable `dnsmasq` on RHEL, CentOS, or Fedora: 1. Disable the `dnsmasq` service: ```console - $ sudo service dnsmasq stop - + $ sudo systemctl stop dnsmasq $ sudo systemctl disable dnsmasq ```