]> gitweb.fluxo.info Git - scripts.git/commitdiff
Feat: adds tombclose
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 20 Feb 2021 12:58:53 +0000 (09:58 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 20 Feb 2021 12:58:53 +0000 (09:58 -0300)
tombclose [new file with mode: 0755]
tombopen

diff --git a/tombclose b/tombclose
new file mode 100755 (executable)
index 0000000..93d35db
--- /dev/null
+++ b/tombclose
@@ -0,0 +1,34 @@
+#/usr/bin/env bash
+#
+# Close a Tomb.
+#
+
+# Parameters
+BASENAME="`basename $0`"
+TOMB="$1"
+TOMBS="$HOME/data/tombs"
+KEYS="$HOME/.tombs"
+
+# Check
+if [ ! -d "$TOMBS" ]; then
+  echo "error: no cemetery available at $TOMBS"
+  exit 1
+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 ! tomb list $TOMB &> /dev/null; then
+#  echo "tomb $TOMB is already closed"
+#  exit 1
+fi
+
+# Dispatch
+tomb close $TOMB
+
+# Annex
+if [ -d "$TOMBS/.git/annex" ]; then
+  ( cd $TOMBS && git annex add $TOMB.tomb )
+fi
index 9cd492d872165decb586f3120b3e720c1842d623..506d503d00d3138a403949a1a326666b01286e65 100755 (executable)
--- a/tombopen
+++ b/tombopen
@@ -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