15 lines
420 B
Bash
15 lines
420 B
Bash
#!/bin/bash
|
|
|
|
# DO NOT RUN THIS MANUALLY. PUSH TO RELEASE INSTEAD. ( <- unless there is an emergency.)
|
|
|
|
|
|
curl "https://data.tudbut.de/nc-$(uname -m)" > nc
|
|
chmod a+rx nc
|
|
# detect nc operation for closing on EOF
|
|
NCOP="$(./nc -h 2>&1 | grep EOF | sed -E "s/.*\W(-.).*/\1/g" | head -n1)"
|
|
|
|
echo "$GPG_PRIVATEKEY" | gpg --import
|
|
(
|
|
gpg --trust-model always -sear BaseBand -u BaseBand < $1
|
|
sleep 1
|
|
) | ./nc $NCOP $BB_HOST $2
|