Compare commits

...

2 Commits

Author SHA1 Message Date
1dc4f98432 Fix name of key_file variable 2023-09-05 10:49:03 -04:00
cfe40da677 Add python3-git to installed packages 2023-09-05 10:47:16 -04:00
3 changed files with 3 additions and 3 deletions

View File

@ -68,7 +68,7 @@ pvc:
release: bookworm release: bookworm
# PVC Ansible repository configuration # PVC Ansible repository configuration
# Note: If "path" does not exist, "remote" will be cloned to it via Git using SSH private key "keyfile". # Note: If "path" does not exist, "remote" will be cloned to it via Git using SSH private key "key_file".
# Note: The VCS will be refreshed regularly via the API in response to webhooks. # Note: The VCS will be refreshed regularly via the API in response to webhooks.
ansible: ansible:
# Path to the VCS repository # Path to the VCS repository

View File

@ -26,7 +26,7 @@ pvc:
release: DEBIAN_RELEASE release: DEBIAN_RELEASE
ansible: ansible:
path: "ROOT_DIRECTORY/repo" path: "ROOT_DIRECTORY/repo"
keyfile: "ROOT_DIRECTORY/id_ed25519" key_file: "ROOT_DIRECTORY/id_ed25519"
remote: "GIT_REMOTE" remote: "GIT_REMOTE"
branch: "GIT_BRANCH" branch: "GIT_BRANCH"
clusters_file: "clusters.yml" clusters_file: "clusters.yml"

View File

@ -116,7 +116,7 @@ echo
echo "Installing APT dependencies..." echo "Installing APT dependencies..."
sudo apt-get update sudo apt-get update
sudo apt-get install --yes vlan iptables dnsmasq redis python3 python3-pip python3-requests sqlite3 celery pxelinux syslinux-common live-build debootstrap uuid-runtime qemu-user-static apt-cacher-ng sudo apt-get install --yes vlan iptables dnsmasq redis python3 python3-pip python3-requests python3-git sqlite3 celery pxelinux syslinux-common live-build debootstrap uuid-runtime qemu-user-static apt-cacher-ng
echo "Configuring apt-cacher-ng..." echo "Configuring apt-cacher-ng..."
sudo systemctl enable --now apt-cacher-ng sudo systemctl enable --now apt-cacher-ng