From af681eabf501049cdf4d912b476d8a657dfaeca0 Mon Sep 17 00:00:00 2001 From: Brian Clemens Date: Mon, 8 Mar 2021 20:51:06 +0900 Subject: [PATCH 1/2] Document e26a05e debug option --- docs/.gitignore | 1 + docs/docs/wwctl/wwctl.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/.gitignore b/docs/.gitignore index b2d6de30..9c0d0c36 100644 --- a/docs/.gitignore +++ b/docs/.gitignore @@ -7,6 +7,7 @@ # Generated files .docusaurus .cache-loader +package-lock.json # Misc .DS_Store diff --git a/docs/docs/wwctl/wwctl.md b/docs/docs/wwctl/wwctl.md index 05890f6a..daa0e0d7 100644 --- a/docs/docs/wwctl/wwctl.md +++ b/docs/docs/wwctl/wwctl.md @@ -13,7 +13,7 @@ Control interface to the Cluster Warewulf Provisioning System ## Options ### -d, --debug -Run with debugging messages enabled +Run with increased verbosity and debug messages enabled ### -v, --verbose Run with increased verbosity From 73e8265c381a2456bcff5cb8efa0051c1c71f445 Mon Sep 17 00:00:00 2001 From: Brian Clemens Date: Mon, 8 Mar 2021 21:04:50 +0900 Subject: [PATCH 2/2] Document 98e3547 create group and start service in source-installed quickstarts --- docs/docs/getting-started/quickstart-el7.md | 13 +++++++++++++ docs/docs/getting-started/quickstart-el8.md | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/docs/docs/getting-started/quickstart-el7.md b/docs/docs/getting-started/quickstart-el7.md index 463745a8..69202f7f 100644 --- a/docs/docs/getting-started/quickstart-el7.md +++ b/docs/docs/getting-started/quickstart-el7.md @@ -46,6 +46,19 @@ nfs: - /var/warewulf ``` +## Start and enable the Warewulf service + +```bash +# Create the group the warewulfd service will run as +$ sudo groupadd -r warewulf + +# Reload system services +$ sudo systemctl daemon-reload + +# Start and enable the warewulfd service +$ sudo systemctl enable --now warewulfd +``` + ## Configure system services automatically ```bash diff --git a/docs/docs/getting-started/quickstart-el8.md b/docs/docs/getting-started/quickstart-el8.md index a63e416f..12b1751a 100644 --- a/docs/docs/getting-started/quickstart-el8.md +++ b/docs/docs/getting-started/quickstart-el8.md @@ -48,6 +48,19 @@ nfs: - /var/warewulf ``` +## Start and enable the Warewulf service + +```bash +# Create the group the warewulfd service will run as +$ sudo groupadd -r warewulf + +# Reload system services +$ sudo systemctl daemon-reload + +# Start and enable the warewulfd service +$ sudo systemctl enable --now warewulfd +``` + ## Configure system services automatically ```bash