From ddca185401acf3dd29e483dfb53dbb14141afb04 Mon Sep 17 00:00:00 2001 From: A Holt Date: Tue, 4 Jun 2024 10:20:02 -0400 Subject: [PATCH] iiab-diagnostics: try dpaste.com instead of sprunge.us --- scripts/iiab-diagnostics | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/iiab-diagnostics b/scripts/iiab-diagnostics index 0b979fcd3..f0d47a52b 100755 --- a/scripts/iiab-diagnostics +++ b/scripts/iiab-diagnostics @@ -272,12 +272,12 @@ echo -e "\e[1m" #if [ "$ans" == "" ] || [ "$ans" == "y" ] || [ "$ans" == "Y" ]; then if ! [[ $ans =~ ^[nNqQ]$ ]]; then echo -ne "PUBLISHING TO URL... " # Run 'pastebinit -l' to list other possible pastebin site URLs - pastebinit -b sprunge.us < $outfile # Stopped working for many weeks (mid-2023) + pastebinit -b dpaste.com < $outfile # Unfortunately limited to 30 days by default. Claims 1,000,000 character maximum pastebin size, but that claim is not 100% accurate. + #pastebinit -b sprunge.us < $outfile # Stopped working for many weeks (mid-2023, and again in mid-2024) #pastebinit -b paste2.org < $outfile # Spammy/dangerous pastebins - #pastebinit -b dpaste.com < $outfile # Claims 1,000,000 character maximum pastebin size, but not reliable else echo -e "If you later decide to publish it, run:" echo - echo -e " pastebinit -b sprunge.us < $outfile" + echo -e " pastebinit -b dpaste.com < $outfile" fi echo -e "\e[0m"