diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2021-02-20 09:58:53 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2021-02-20 09:58:53 -0300 |
commit | fe8af292595e35c0e01e19a3510500da8f506599 (patch) | |
tree | d392393d04c1e360a81fe1cafe13ef68a7ed9dc4 /tombopen | |
parent | 70ad3f0be888c8d15f1f4aca899b851f5203cc3b (diff) | |
download | scripts-fe8af292595e35c0e01e19a3510500da8f506599.tar.gz scripts-fe8af292595e35c0e01e19a3510500da8f506599.tar.bz2 |
Feat: adds tombclose
Diffstat (limited to 'tombopen')
-rwxr-xr-x | tombopen | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -17,6 +17,9 @@ elif [ -z "$TOMB" ]; then echo "usage: $BASENAME <tomb>" echo "available tombs: `ls $TOMBS | xargs basename -a -s .tomb | xargs echo`" exit 1 +elif [ ! -e "$TOMBS/$TOMB.tomb" ]; then + echo "tomb not found: $TOMBS/$TOMB.tomb" + exit 1 elif [ ! -e "$KEYS/$TOMB.tomb.key" ]; then echo "missing keyfile $KEYS/$TOMB.tomb.key" exit 1 |