From 556ee4b532f8d1e663b1df8f1c1c5196639af4de Mon Sep 17 00:00:00 2001 From: tolerryan <105945216+tolerryan@users.noreply.github.com> Date: Fri, 14 Nov 2025 22:59:31 -0600 Subject: [PATCH] downloader updates --- downloader.tf | 9 --------- roles/ind/downloader/downloader-install.yml | 8 ++++++++ 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/downloader.tf b/downloader.tf index 5cb558a..9bc168f 100644 --- a/downloader.tf +++ b/downloader.tf @@ -22,15 +22,6 @@ resource "proxmox_lxc" "downloader" { size = "42G" } - mountpoint{ - key = "0" - slot = 0 - storage = "Ceph" - mp = "/data" - # 1.2TB, terraform plugin is setting it to Ms - size = "1258292M" - } - network { name = "eth0" bridge = "vmbr0" diff --git a/roles/ind/downloader/downloader-install.yml b/roles/ind/downloader/downloader-install.yml index 470f536..1b25b11 100644 --- a/roles/ind/downloader/downloader-install.yml +++ b/roles/ind/downloader/downloader-install.yml @@ -22,6 +22,14 @@ - name: setup-restic.yml - setup restic import_tasks: ../../lib/setup-restic.yml + - name: Mount NFS share + ansible.posix.mount: + src: "192.168.0.42:/watari/Downloads/" + path: "/data/" + fstype: "nfs" + opts: "defaults" + state: "mounted" + - name: Create grail user user: name: grail