From 9f91f73270f958d87356c2ac94be1bd9a331b8f5 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Tue, 15 Apr 2025 00:23:16 +0200 Subject: [PATCH] fix(compute01): Add nofail to dgsi mounts --- machines/nixos/compute01/dgsi/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/machines/nixos/compute01/dgsi/default.nix b/machines/nixos/compute01/dgsi/default.nix index 96c3d81..86add37 100644 --- a/machines/nixos/compute01/dgsi/default.nix +++ b/machines/nixos/compute01/dgsi/default.nix @@ -208,7 +208,7 @@ in { where = "/run/django-apps/dgsi/archives"; what = "/var/lib/django-apps/dgsi/archives"; - options = "bind"; + options = "bind,nofail"; after = [ "dj-dgsi.service" ]; partOf = [ "dj-dgsi.service" ]; @@ -217,7 +217,7 @@ in { where = "/run/django-apps/dgsi/media"; what = "/var/lib/django-apps/dgsi/media"; - options = "bind"; + options = "bind,nofail"; after = [ "dj-dgsi.service" ]; partOf = [ "dj-dgsi.service" ];