diff options
author | Franck Cuny <franck@fcuny.net> | 2022-08-15 17:54:09 -0700 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-08-15 17:55:45 -0700 |
commit | ae0976a5d2dc6ecada389ece6c29f9b1aad2bbb7 (patch) | |
tree | 387a2fb776ae5057a68f3e96e40cc2f9d2660bf5 /modules/services | |
parent | ci(pre-commit): add a few more checks (diff) | |
download | world-ae0976a5d2dc6ecada389ece6c29f9b1aad2bbb7.tar.gz |
ref(modules/sourcegraph): stop backing up
There's no need to make a backup for sourcegraph, all the things I might care about (at this stage at least) can be easily regenerated. Change-Id: I4b592c9007ce57b56b04a94b43ad2ab8759ce891 Reviewed-on: https://cl.fcuny.net/c/world/+/718 Tested-by: CI Reviewed-by: Franck Cuny <franck@fcuny.net>
Diffstat (limited to '')
-rw-r--r-- | modules/services/sourcegraph/default.nix | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/services/sourcegraph/default.nix b/modules/services/sourcegraph/default.nix index 0845c55..4fd0b8d 100644 --- a/modules/services/sourcegraph/default.nix +++ b/modules/services/sourcegraph/default.nix @@ -51,20 +51,5 @@ in dnsProvider = "gcloud"; credentialsFile = secrets."acme/credentials".path; }; - - my.services.backup = { - paths = [ "/var/lib/sourcegraph/etc" "/var/lib/sourcegraph/data" ]; - exclude = [ - "/var/lib/sourcegraph/data/grafana.log" - "/var/lib/sourcegraph/data/grafana/" - "/var/lib/sourcegraph/data/grafana/" - "/var/lib/sourcegraph/data/jaeger.log" - "/var/lib/sourcegraph/data/minio.log" - "/var/lib/sourcegraph/data/minio/" - "/var/lib/sourcegraph/data/prometheus.log" - "/var/lib/sourcegraph/data/prometheus/" - "/var/lib/sourcegraph/data/redis/" - ]; - }; }; } |