From 6c1810523396bfd0c3b3bdc932d9aba7f2b8360b Mon Sep 17 00:00:00 2001 From: Khaled Salim Date: Tue, 7 Jun 2016 12:43:28 +0300 Subject: [PATCH] Fix systemctl commands in the install guide --- docs/source/guides/install-guides/common_sections.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/guides/install-guides/common_sections.rst b/docs/source/guides/install-guides/common_sections.rst index b4646a0cb..840532675 100644 --- a/docs/source/guides/install-guides/common_sections.rst +++ b/docs/source/guides/install-guides/common_sections.rst @@ -188,22 +188,22 @@ xCAT is started automatically after the installation, but the following commands * start xCAT: :: service xcatd start - [systemd] systemctl xcatd.service start + [systemd] systemctl start xcatd.service * stop xCAT: :: service xcatd stop - [systemd] systemctl xcatd.service stop + [systemd] systemctl stop xcatd.service * restart xCAT: :: service xcatd restart - [systemd] systemctl xcatd.service restart + [systemd] systemctl restart xcatd.service * check xCAT status: :: service xcatd status - [systemd] systemctl xcatd.service status + [systemd] systemctl status xcatd.service .. END_verifying_xcat