From c02efb3f46caf60a2a9e94d6b50efe0aee1ed8d6 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Wed, 1 Oct 2025 21:22:06 -0400 Subject: [PATCH] Fix typo in script example path --- docs/deployment/provisioner.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/deployment/provisioner.md b/docs/deployment/provisioner.md index 40775a1..d6e14f6 100644 --- a/docs/deployment/provisioner.md +++ b/docs/deployment/provisioner.md @@ -171,7 +171,7 @@ basic-ssh 11 Content-Type: text/cloud-config; charset="us-ascii" The PVC provisioner provides a scripting framework in order to automate VM installation. This is generally the most useful with UNIX-like systems which can be installed over the network via shell scripts. For instance, the script might install a Debian VM using `debootstrap`, which is automatically installed by default. However all deployment profiles require some provisioning script, minimally to craft their Libvirt configuration. -Several example scripts are provided in the `/usr/share/pvc/provisioner/examples/scripts` directory of all PVC hypervisors. These can be imported into the provisioner system as-is to help get you started, or you are of course free to modify or extend these as you wish, or write your own based on them to suit your needs. +Several example scripts are provided in the `/usr/share/pvc/provisioner/examples/script` directory of all PVC hypervisors. These can be imported into the provisioner system as-is to help get you started, or you are of course free to modify or extend these as you wish, or write your own based on them to suit your needs. Provisioner scripts are written in Python 3 and are implemented as a class, `VMBuilderScript`, which extends the built-in `VMBuilder` class, for example: