]> git.decadent.org.uk Git - dak.git/commitdiff
Add a ssh trigger for p-u comment handling
authorEmilio Pozuelo Monfort <pochu@debian.org>
Sat, 28 May 2016 13:44:08 +0000 (15:44 +0200)
committerEmilio Pozuelo Monfort <pochu@debian.org>
Sat, 28 May 2016 21:33:07 +0000 (23:33 +0200)
This will allow to create comment files once release.debian.org
is no longer in the same machine as ftp-master.debian.org and
the RT loses access to the various COMMENTS folders.

Signed-off-by: Emilio Pozuelo Monfort <pochu@debian.org>
scripts/debian/p-u-comment.sh [new file with mode: 0755]

diff --git a/scripts/debian/p-u-comment.sh b/scripts/debian/p-u-comment.sh
new file mode 100755 (executable)
index 0000000..56a4776
--- /dev/null
@@ -0,0 +1,73 @@
+#!/bin/bash
+
+# Copyright © 2016 Emilio Pozuelo Monfort <pochu@debian.org>
+
+# Permission is hereby granted, free of charge, to any person obtaining
+# a copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish,
+# distribute, sublicense, and/or sell copies of the Software, and to
+# permit persons to whom the Software is furnished to do so, subject to
+# the following conditions:
+#
+# The above copyright notice and this permission notice shall be
+# included in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+set -e
+set -u
+
+# Load up some standard variables
+export SCRIPTVARS=/srv/ftp-master.debian.org/dak/config/debian/vars
+. $SCRIPTVARS
+
+. "${configdir}/common"
+
+CMD=(${SSH_ORIGINAL_COMMAND})
+COMMAND="${CMD[0]^^}"
+QUEUE="${CMD[1]}"
+PACKAGE="${CMD[2]}"
+
+case "${QUEUE}" in
+    p-u-new|o-p-u-new|o-o-p-u-new)
+        ;;
+    *)
+        echo "Invalid policy queue ${QUEUE}."
+        exit 42
+        ;;
+esac
+
+case "${COMMAND}" in
+    ACCEPT|REJECT)
+        ;;
+    *)
+        echo "Invalid command ${COMMAND}."
+        exit 42
+        ;;
+esac
+
+destdir=${queuedir}/queue/${QUEUE}/COMMENTS/
+cd $destdir
+
+echo "Importing new ${COMMAND} comment file for ${PACKAGE} into ${QUEUE}"
+
+trap cleanup EXIT
+
+tmpfile=$( gettempfile )
+destfile=${COMMAND}.${PACKAGE}
+
+cat > ${tmpfile}
+
+mv ${tmpfile} ${destfile}
+
+echo "Done"
+
+exit 0