From 2acd06c9fa22563bd4cebe825779b3f3f0c94d89 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 8 May 2024 12:23:04 +0200 Subject: [PATCH 1/2] docs: add faq page --- docs/mkdocs.yml | 1 + docs/site/faq/index.md | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 docs/site/faq/index.md diff --git a/docs/mkdocs.yml b/docs/mkdocs.yml index 0f5785729..5a85a03bc 100644 --- a/docs/mkdocs.yml +++ b/docs/mkdocs.yml @@ -82,6 +82,7 @@ nav: - reference/clan-core/sops.md - reference/clan-core/state.md - Contributing: contributing/contributing.md + - FAQ: faq/index.md docs_dir: site site_dir: out diff --git a/docs/site/faq/index.md b/docs/site/faq/index.md new file mode 100644 index 000000000..5e4a818af --- /dev/null +++ b/docs/site/faq/index.md @@ -0,0 +1,15 @@ +# FAQ + +??? Question "Why is targetHost necessary?" + + When using `clan machines install [machine ][targetHost]` + + Why is targetHost necessary if you already configured target host in the configuration? + +??? Question "How to check if the correct installation medium?" + + How to warn and check if it is the only installation medium? + +??? Question "How are submodules handled in/with clan?" + + How are submodules handled in/with clan? From 3e9a1ea68f960bc54995674e5cc1c8ffa59a7487 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Wed, 8 May 2024 12:27:16 +0200 Subject: [PATCH 2/2] vm-manager: hide hidden vm log info --- pkgs/clan-vm-manager/clan_vm_manager/singletons/use_vms.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/clan-vm-manager/clan_vm_manager/singletons/use_vms.py b/pkgs/clan-vm-manager/clan_vm_manager/singletons/use_vms.py index cbfec3839..67b8f6d59 100644 --- a/pkgs/clan-vm-manager/clan_vm_manager/singletons/use_vms.py +++ b/pkgs/clan-vm-manager/clan_vm_manager/singletons/use_vms.py @@ -131,8 +131,6 @@ class ClanStore: # only one vm can output logs at a time if vm == self._logging_vm: gfile.load_contents_async(None, file_read_callback, None) - else: - log.info("Log details of VM hidden, vm is not current logging VM.") # we cannot check this type, python is not smart enough