From 8804a855b367249e10b9d90b314d557221d168a7 Mon Sep 17 00:00:00 2001 From: fbt Date: Tue, 26 Nov 2019 01:49:12 +0300 Subject: [PATCH] and some other stuff Signed-off-by: fbt --- ufw | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ufw b/ufw index 4472ea5..85e8144 100755 --- a/ufw +++ b/ufw @@ -57,6 +57,8 @@ usage() { Environment variables: UFW_CFG_FILE # Config file to read, defaults to \$XDG_CONFIG_DIR/ufw UFW_SECRET # Your API secret + UFW_TMP_DIR + UFW_URL EOF } @@ -361,6 +363,8 @@ main() { cfg_file=${UFW_CFG_FILE:-"$XDG_CONFIG_DIR/ufw"} [[ $UFW_SECRET ]] && secret=$UFW_SECRET + [[ $UFW_TMP_DIR ]] && cfg_tmp_dir=$UFW_TMP_DIR + [[ $UFW_URL ]] && cfg_service_url=$UFW_URL [[ $1 ]] || { usage; return 1; }