diff options
author | Andinus <andinus@nand.sh> | 2020-10-15 00:42:18 +0530 |
---|---|---|
committer | Andinus <andinus@nand.sh> | 2020-10-15 00:42:18 +0530 |
commit | 907d729ec281fa578db4993ceabc84b0aa5d6047 (patch) | |
tree | a0d423a3cad456fa4e4f0f72ce7a2feba5c54fc7 | |
parent | d718d2e0aeaa410659654dac1d224910210c9849 (diff) | |
download | leo-0.2.0.tar.gz |
Document signify, update example config v0.2.0
-rw-r--r-- | README | 12 | ||||
-rw-r--r-- | share/leo.conf | 12 |
2 files changed, 13 insertions, 11 deletions
diff --git a/README b/README index a9532ae..9ed1577 100644 --- a/README +++ b/README @@ -13,7 +13,7 @@ Table of Contents .. 1. Profile .. 2. Options ..... 1. encrypt/sign -..... 2. delete +..... 2. signify ..... 3. help 3. Example 4. Demo @@ -21,7 +21,8 @@ Table of Contents Leo is a simple backup program. It creates tar(1) files from a -pre-defined list. It can encrypt/sign files with gpg2(1). +pre-defined list. It can encrypt/sign files with gpg2(1) & sign files +with signify(1). • Web-site: <https://andinus.nand.sh/leo> • Source: <https://git.tilde.institute/andinus/leo> @@ -97,11 +98,10 @@ pre-defined list. It can encrypt/sign files with gpg2(1). compression. -2.2.2 delete -╌╌╌╌╌╌╌╌╌╌╌╌ +2.2.2 signify +╌╌╌╌╌╌╌╌╌╌╌╌╌ - Removes the tar file after running gpg2(1). This means that either - `encrypt' or `sign' option must be passed. + `signify' will invoke `signify(1)' & the file will be signed. 2.2.3 help diff --git a/share/leo.conf b/share/leo.conf index 15386fc..3256d9a 100644 --- a/share/leo.conf +++ b/share/leo.conf @@ -3,20 +3,22 @@ backup_dir = /home/andinus/backups gpg_fingerprint = D9AE4AEEE1F1B3598E81D9DFB67D55D482A799FD gpg_bin = gpg2 +signify_seckey = /home/andinus/.totally_not_my_key.sec + # Options. encrypt = 1 sign = 1 -delete = 1 # Profile names in []. [journal] -# Local options (only `encrypt' & `sign'). +# Local options. encrypt = 0 -sign = 1 +sign = 0 +signify = 1 # Paths to backup. '=' after path is important. -/home/andinus/documents/andinus.org.gpg = -/home/andinus/documents/archive.org.gpg = +/home/andinus/documents/not_important.org.gpg = +/home/andinus/documents/archive.org = [emacs] /home/andinus/.emacs.d = |