dda-backup/infrastructure/backup/test/resources/test.bb

52 lines
1.4 KiB
BlitzBasic
Raw Normal View History

2024-08-19 06:55:14 +00:00
#!/usr/bin/env bb
(require '[babashka.tasks :as tasks]
2024-08-20 15:15:27 +00:00
'[dda.backup.restic :as rc]
2024-08-20 06:17:51 +00:00
'[dda.backup.postgresql :as pg]
2024-08-19 06:55:14 +00:00
'[dda.backup.backup :as bak]
'[dda.backup.restore :as rs])
2024-08-20 05:56:13 +00:00
(def restic-repo {:password-file "restic-pwd"
:restic-repository "restic-repo"})
2024-08-20 06:17:51 +00:00
(def file-config (merge restic-repo {:backup-path "files"
:files ["test-backup"]
:target-directory "test-restore"}))
(def db-config (merge restic-repo {:backup-path "db"
:pg-db "mydb"
:pg-user "user"
:pg-password "password"}))
(def dry-run {:dry-run true :debug true})
2024-08-20 05:56:13 +00:00
(defn prepare!
[]
2024-08-20 06:17:51 +00:00
(pg/create-pg-pass! db-config))
2024-08-20 05:56:13 +00:00
2024-08-19 06:55:14 +00:00
(defn restic-repo-init!
[]
(spit "restic-pwd" "ThePassword")
2024-08-20 15:15:27 +00:00
(rc/init! file-config)
(rc/init! (merge db-config dry-run)))
2024-08-19 06:55:14 +00:00
(defn restic-backup!
[]
(tasks/shell "mkdir" "-p" "test-backup")
(spit "test-backup/file" "I was here")
2024-08-21 06:57:08 +00:00
(bak/backup-file! file-config)
(bak/backup-db! (merge db-config dry-run)))
2024-08-19 06:55:14 +00:00
(defn restic-restore!
[]
(tasks/shell "mkdir" "-p" "test-restore")
2024-08-20 16:06:24 +00:00
(rs/restore-file! file-config)
2024-08-21 06:57:08 +00:00
(pg/drop-create-db! (merge db-config dry-run))
(rs/restore-db! (merge db-config dry-run)))
2024-08-19 06:55:14 +00:00
2024-08-20 05:56:13 +00:00
(prepare!)
2024-08-19 06:55:14 +00:00
(restic-repo-init!)
(restic-backup!)
(restic-restore!)