diff --git a/ponderings/norg/index.html b/ponderings/norg/index.html index 85e46bc..f3eef04 100644 --- a/ponderings/norg/index.html +++ b/ponderings/norg/index.html @@ -125,11 +125,10 @@
Inspired by Borgmatic
Norg uses a toml
based config file for configuration. An example configuration would look like this:
source_dirs = [
+source_directories = [
"/home/me/Music",
"/home/me/Pictures"
]
-encryption_password = "MyReallySecurePassword"
[[repositories]]
label = "A Repository"
path = "/my/backup/location"
@@ -138,6 +137,15 @@
label = "Another Respository at BorgBase"
path = "ssh://1234abcd@1234abcd.repo.borgbase.com/./repo"
+[encryption]
+encryption_passphrase = "MyReallySecurePassword"
+
+[actions]
+before_actions = ["echo before actions"]
+after_actions = ["echo after actions", "echo actions completed"]
+before_backup = ["echo before backup", "date"]
+after_backup = ["echo after backup","echo backup completed"]
+
[uptimekuma]
base_url = "https://uptime.kuma.url/api/push/1234abcd"
states = ["Success","Failure", "Running"]