]> gitweb.fluxo.info Git - keyringer.git/commitdiff
New action 'cp' (2)
authorSilvio Rhatto <rhatto@riseup.net>
Sat, 16 Aug 2014 23:10:22 +0000 (20:10 -0300)
committerSilvio Rhatto <rhatto@riseup.net>
Sat, 16 Aug 2014 23:10:22 +0000 (20:10 -0300)
lib/keyringer/actions/cp [new file with mode: 0755]

diff --git a/lib/keyringer/actions/cp b/lib/keyringer/actions/cp
new file mode 100755 (executable)
index 0000000..0629b61
--- /dev/null
@@ -0,0 +1,33 @@
+#!/bin/bash
+#
+# Copy secrets.
+#
+
+# Load functions
+LIB="`dirname $0`/../functions"
+source "$LIB" || exit 1
+
+# Aditional parameters
+CWD="`pwd`"
+
+# Avoid leading slash
+ORIG="$(keyringer_filename `echo "$2" | sed -e "s|^/*||"`)"
+DEST="`echo "$3" | sed -e "s|^/*||"`"
+
+# Set destination
+if [ ! -d "$KEYDIR/$RELATIVE_PATH/$DEST" ]; then
+  keyringer_get_new_file $DEST
+else
+  FILE="$DEST"
+fi
+
+# Check if secret exists
+if ! echo "$ORIG" | grep -q '*' && [ ! -e "$KEYDIR/$RELATIVE_PATH/$ORIG" ]; then
+  echo "Secret not found: $ORIG"
+  exit 1
+fi
+
+# Run move command
+cd "$KEYDIR" && cp -a "./$RELATIVE_PATH/$ORIG" "./$FILE"
+keyringer_exec git "$BASEDIR" add "keys/$FILE"
+cd "$CWD"