From 7858829ec464bcb5ee229f272dacd48063ece608 Mon Sep 17 00:00:00 2001 From: fbt Date: Tue, 26 Nov 2019 01:46:00 +0300 Subject: [PATCH] support setting the secret in env vars Signed-off-by: fbt --- ufw | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ufw b/ufw index 425ec0b..4472ea5 100755 --- a/ufw +++ b/ufw @@ -56,6 +56,7 @@ usage() { Environment variables: UFW_CFG_FILE # Config file to read, defaults to \$XDG_CONFIG_DIR/ufw + UFW_SECRET # Your API secret EOF } @@ -359,6 +360,8 @@ main() { cfg_url_regex='^[A-Za-z]([A-Za-z0-9+.-]+)?://.+' cfg_file=${UFW_CFG_FILE:-"$XDG_CONFIG_DIR/ufw"} + [[ $UFW_SECRET ]] && secret=$UFW_SECRET + [[ $1 ]] || { usage; return 1; } if [[ -f "$cfg_file" ]]; then