summaryrefslogtreecommitdiff
path: root/playbook.yaml
diff options
context:
space:
mode:
Diffstat (limited to 'playbook.yaml')
-rw-r--r--playbook.yaml29
1 files changed, 0 insertions, 29 deletions
diff --git a/playbook.yaml b/playbook.yaml
index cad691d..b52c9ce 100644
--- a/playbook.yaml
+++ b/playbook.yaml
@@ -196,7 +196,6 @@
- name: Ensure required packages are installed
ansible.builtin.apt:
name:
- - borgmatic # Backups
- coturn # Audio / video calling server
- libjs-bootstrap4 # Used by invite webpage
- libjs-jquery # Used by invite webpage
@@ -436,34 +435,6 @@
enabled: true
become: true
- - name: Ensure borgmatic private key is installed
- ansible.builtin.copy:
- src: "{{ borg_private_key_path }}"
- dest: /root/.ssh/borg_key
- owner: root
- group: root
- mode: "0600"
- become: true
-
- - name: Ensure borgmatic config directory exists
- ansible.builtin.file:
- path: /etc/borgmatic
- state: directory
- owner: root
- group: root
- mode: "0700"
- become: true
-
- - name: Ensure borgmatic is configured
- ansible.builtin.template:
- src: "{{ playbook_dir }}/files/borgmatic_config.yaml.j2"
- dest: "/etc/borgmatic/config.yaml"
- owner: root
- group: root
- mode: "0600"
- validate: validate-borgmatic-config --config %s
- become: true
-
# Vultr adds a custom sshd_config file that enabled password authentication.
# I don't want this to be enabled, since I'm already copying the public key.
- name: Ensure password authentication is not explicitly enabled