aboutsummaryrefslogtreecommitdiff
path: root/tasks/pve_configure.yaml
diff options
context:
space:
mode:
authorheqnx <root@heqnx.com>2025-06-27 14:36:04 +0300
committerheqnx <root@heqnx.com>2025-06-27 14:36:04 +0300
commitcb3dc22df728272ad05de3684eb8dc672654a05e (patch)
tree4c3ddd6505b82d4559ced35232e3ea028b70da1d /tasks/pve_configure.yaml
parent12756a89c2089f696c9e05bf8c95a093e25521a4 (diff)
downloadansible-pve-host-cb3dc22df728272ad05de3684eb8dc672654a05e.tar.gz
ansible-pve-host-cb3dc22df728272ad05de3684eb8dc672654a05e.zip
added conditional dnsmasq setup for vmbr1 and ufw filter rules; fixed a couple of issues by removing /etc/pve/priv, no need for modifying it
Diffstat (limited to 'tasks/pve_configure.yaml')
-rw-r--r--tasks/pve_configure.yaml17
1 files changed, 0 insertions, 17 deletions
diff --git a/tasks/pve_configure.yaml b/tasks/pve_configure.yaml
index bbc9abc..c19964a 100644
--- a/tasks/pve_configure.yaml
+++ b/tasks/pve_configure.yaml
@@ -132,20 +132,3 @@
- name: add user to admin group
command: pveum usermod {{ pve_admin_user }} -group {{ pve_admin_group }}
register: add_to_group
-
-- name: ensure /etc/pve/priv directory exists
- file:
- path: /etc/pve/priv
- state: directory
- mode: '0700'
- owner: root
- group: root
-
-- name: copy /root/.ssh/authorized_keys to /etc/pve/priv/authorized_keys
- copy:
- src: /root/.ssh/authorized_keys
- dest: /etc/pve/priv/authorized_keys
- owner: root
- group: root
- mode: '0600'
- remote_src: true