summaryrefslogtreecommitdiffstats
path: root/repos.d
diff options
context:
space:
mode:
authorThomas Groman <tgroman@nuegia.net>2020-03-11 14:30:34 -0700
committerThomas Groman <tgroman@nuegia.net>2020-03-11 14:30:34 -0700
commit753ad76f5f32ace36a7686936b76caf296c7ff65 (patch)
treedc1c94387e370e362117eeda5c634ed383e3020e /repos.d
downloadrestic_bootsrap-753ad76f5f32ace36a7686936b76caf296c7ff65.tar
restic_bootsrap-753ad76f5f32ace36a7686936b76caf296c7ff65.tar.gz
restic_bootsrap-753ad76f5f32ace36a7686936b76caf296c7ff65.tar.lz
restic_bootsrap-753ad76f5f32ace36a7686936b76caf296c7ff65.tar.xz
restic_bootsrap-753ad76f5f32ace36a7686936b76caf296c7ff65.zip
initial commit
Diffstat (limited to 'repos.d')
-rw-r--r--repos.d/backblaze.conf9
-rw-r--r--repos.d/linode.conf12
2 files changed, 21 insertions, 0 deletions
diff --git a/repos.d/backblaze.conf b/repos.d/backblaze.conf
new file mode 100644
index 0000000..e4e40aa
--- /dev/null
+++ b/repos.d/backblaze.conf
@@ -0,0 +1,9 @@
+#!/bin/bash
+# Repository Configuration
+export B2_ACCOUNT_KEY=""
+export B2_ACCOUNT_ID=""
+export RESTIC_REPOSITORY="b2:"
+
+export RESTIC_PASSWORD=""
+
+export RESTIC_COMMON_OPTS="-o b2.connections=45 --cache-dir=/var/cache/restic"
diff --git a/repos.d/linode.conf b/repos.d/linode.conf
new file mode 100644
index 0000000..3d6f6c1
--- /dev/null
+++ b/repos.d/linode.conf
@@ -0,0 +1,12 @@
+#!/bin/bash
+# MiniIO (AWS S3 API Compatible)
+
+# Object Storage Configuration
+export AWS_ACCESS_KEY_ID=""
+export AWS_SECRET_ACCESS_KEY=""
+
+# Repository Configuration
+export RESTIC_REPOSITORY="s3:us-east-1.linodeobjects.com/"
+export RESTIC_PASSWORD=""
+
+export RESTIC_COMMON_OPTS="--cache-dir=/var/cache/restic"