From f4b3551be54238e1e02070d8ff4415bdb7763f35 Mon Sep 17 00:00:00 2001 From: Vasudev Kamath Date: Sun, 17 Dec 2017 13:13:54 +0530 Subject: Remote signing script for package upload to my host --- sign-remote | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 sign-remote diff --git a/sign-remote b/sign-remote new file mode 100755 index 0000000..f49af78 --- /dev/null +++ b/sign-remote @@ -0,0 +1,33 @@ +#!/bin/bash + +# Copyright © 2009 Stefano Zacchiroli + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +if [ -z "$1" ] ; then + echo "Usage: sign-remote HOSTNAME:PATH" + exit 2 +fi +url="$1" +host=$(echo "$url" | cut -f 1 -d':') +path=$(echo "$url" | cut -f 2 -d':') +base=$(dirname "$path") +if [ -z "$host" -o -z "$path" ] ; then + echo "Malformed remote \"URL\", must follow the \"HOSTNAME:PATH\" convention." + exit 2 +fi + +tmp=`mktemp` +sig="$tmp.gpg" +trap "rm -f $tmp $sig" EXIT + +echo "I: retrieving file to sign from remote host ..." +scp "$url" $tmp +echo "I: signing ..." +gpg --detach-sign --batch -o $sig $tmp +echo "I: sending back signature ..." +scp $sig "$host":"$path.gpg" +echo "I: remote signing done." -- cgit v1.2.3