aboutsummaryrefslogtreecommitdiff
path: root/scripts/encrypt
blob: 107aa3e8b42b3b505bd9b7a1b75cc962b0730787 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash
# encrypt to multiple recipients

FILE="$1"
BASENAME="`basename $0`"
RECIPIENTS="config/recipients"

if [ -z "$FILE" ]; then
  echo "Usage: `basename $0` <file>"
  exit 1
elif [ ! -f "$RECIPIENTS" ]; then
  echo "No recipient config was found"
  exit 1
fi

mkdir -p keys/`dirname $FILE`
recipients="$(awk '{ print "-r " $2 }' $RECIPIENTS | xargs)"
gpg --armor -e -s $recipients - > keys/$FILE