From 347767b848676e255367aa6b5444f909bfabfb7a Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Tue, 26 Dec 2017 17:13:14 +0000 Subject: [PATCH] pastebinit: sprunge.us is worse than useless --- packages/sysutils/busybox/scripts/pastebinit | 21 ++++++++++---------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/packages/sysutils/busybox/scripts/pastebinit b/packages/sysutils/busybox/scripts/pastebinit index 43b9f18b820..57e84f0dbbc 100755 --- a/packages/sysutils/busybox/scripts/pastebinit +++ b/packages/sysutils/busybox/scripts/pastebinit @@ -1,26 +1,25 @@ #!/bin/sh ################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2014 Stephan Raue (stephan@openelec.tv) +# This file is part of LibreELEC - https://libreelec.tv +# Copyright (C) 2017-present Team LibreELEC # -# OpenELEC is free software: you can redistribute it and/or modify +# LibreELEC 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 2 of the License, or # (at your option) any later version. # -# OpenELEC is distributed in the hope that it will be useful, +# LibreELEC is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with OpenELEC. If not, see . +# along with LibreELEC. If not, see . ################################################################################ -# -# wrapper for curl, posting to the sprunge.us pastebin -# reads from stdin if called without an argument -# - -cat "$@" | curl -F 'sprunge=<-' http://sprunge.us +if [ -n "${PASTEUSR}" -a "${PASTEPWD}" ]; then + cat "$@" | curl -F 'f:1=<-' ${PASTEUSR}:${PASTEPWD}@ix.io +else + cat "$@" | curl -F 'f:1=<-' http://ix.io +fi