From fdf856c53d7b4abe9b0ed3a10b66f1f273f74a04 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 14 Dec 2023 12:53:11 -0500 Subject: [PATCH] Add creation of PVC directory --- roles/pvc/tasks/pvc/main.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/roles/pvc/tasks/pvc/main.yml b/roles/pvc/tasks/pvc/main.yml index a12f352..d6a94b8 100644 --- a/roles/pvc/tasks/pvc/main.yml +++ b/roles/pvc/tasks/pvc/main.yml @@ -32,6 +32,13 @@ - name: check if pvc-client-cli is installed command: dpkg -l pvc-client-cli +- name: create pvc configuration directory + file: + dest: "/etc/pvc" + mode: directory + owner: root + group: sudo + - name: install pvc daemon configuration template: src: "pvc/{{ item }}.j2"