From: Paul Hänsch Date: Sat, 15 May 2021 10:56:33 +0000 (+0200) Subject: try automatic switching to busybox for uuencode and sha256sum X-Git-Url: https://git.plutz.net/?p=cgilite;a=commitdiff_plain;h=80b3d8c42573d500edfb7f3da30f48a2c1e14334 try automatic switching to busybox for uuencode and sha256sum --- diff --git a/session.sh b/session.sh index b52ac0a..b9cef4d 100755 --- a/session.sh +++ b/session.sh @@ -3,6 +3,13 @@ [ -n "$include_session" ] && return 0 include_session="$0" +if ! which uuencode >/dev/null; then + uuencode() { busybox uuencode "$@"; } +fi +if ! which sha256sum >/dev/null; then + sha256sum() { busybox sha256sum "$@"; } +fi + _DATE="$(date +%s)" SESSION_TIMEOUT="${SESSION_TIMEOUT:-7200}"