diff options
author | Rasmus Thomsen <oss@cogitri.dev> | 2019-06-12 22:47:39 +0200 |
---|---|---|
committer | Rasmus Thomsen <oss@cogitri.dev> | 2019-06-12 22:47:44 +0200 |
commit | 820a7e9a4ca4ea7d38a6a124608abbb38e6c36ec (patch) | |
tree | b271721dc30be5214e5ff7d4e4b55afe16ffc61a | |
parent | e401afba363b6319a089f3920ce36ea1c113f94d (diff) | |
download | wgetpaste-820a7e9a4ca4ea7d38a6a124608abbb38e6c36ec.tar.gz |
Remove poundpython, make dpaste the default
poundpython is no more :c
-rwxr-xr-x | wgetpaste | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -14,7 +14,7 @@ E=$'\e' N=$'\n' ### services -SERVICES="codepad bpaste dpaste gists poundpython" +SERVICES="codepad bpaste dpaste gists" # bpaste ENGINE_bpaste=pinnwand URL_bpaste="https://bpaste.net/" @@ -33,9 +33,6 @@ DEFAULT_EXPIRATION_dpaste="30 days" # gists ENGINE_gists=gists URL_gists="https://api.github.com/gists" -# poundpython -ENGINE_poundpython=lodgeit -URL_poundpython="https://paste.pound-python.org/" # tinyurl ENGINE_tinyurl=tinyurl URL_tinyurl="http://tinyurl.com/ api-create.php" @@ -722,7 +719,7 @@ load_configs() { load_configs [[ $SERVICESET ]] && verifyservice "$SERVICESET" && SERVICE=$(escape "$SERVICESET") DEFAULT_NICK=${DEFAULT_NICK:-$(whoami)} || die "whoami failed" -DEFAULT_SERVICE=${DEFAULT_SERVICE:-poundpython} +DEFAULT_SERVICE=${DEFAULT_SERVICE:-dpaste} DEFAULT_LANGUAGE=${DEFAULT_LANGUAGE:-Plain Text} DEFAULT_EXPIRATION=${DEFAULT_EXPIRATION:-1 month} SERVICE=${SERVICE:-${DEFAULT_SERVICE}} |