diff options
author | Rosen Penev <rosenp@gmail.com> | 2022-04-25 19:02:33 -0700 |
---|---|---|
committer | Nick Hainke <vincent@systemli.org> | 2022-04-26 08:25:19 +0200 |
commit | a4b08f7c1ce1461aaa2520d52eec98ff37c126a7 (patch) | |
tree | 856daaa7cf548f6b5c641002ccb44c0ad8a5ba4d /utils/ubnt-manager | |
parent | 5fc06d939fb9a37752b7665eca1355e23aa4e85f (diff) |
ubnt-manager: run through shellcheck
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'utils/ubnt-manager')
-rwxr-xr-x | utils/ubnt-manager/files/ubnt-manager.sh | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/utils/ubnt-manager/files/ubnt-manager.sh b/utils/ubnt-manager/files/ubnt-manager.sh index c65eb2363..cc72e1fe4 100755 --- a/utils/ubnt-manager/files/ubnt-manager.sh +++ b/utils/ubnt-manager/files/ubnt-manager.sh @@ -13,14 +13,13 @@ rexec() { local username="$2" local password="$3" local cmd="$4" - raw=$(DROPBEAR_PASSWORD="$password" ssh -y $username@$target "$cmd" 2>/dev/null) - ssh_result=$? + raw=$(DROPBEAR_PASSWORD="$password" ssh -y "$username@$target" "$cmd" 2>/dev/null) } get_json_dump() { local cmd="/usr/www/status.cgi" - rexec $* "$cmd" - echo $raw + rexec "$@" "$cmd" + echo "$raw" } handle_device() { @@ -29,7 +28,6 @@ handle_device() { config_get target "$device" target config_get username "$device" username config_get password "$device" password - ssh_result=0 } add_device_to_list() { @@ -41,7 +39,7 @@ list_devices() { device_list="" config_load ubnt-manager config_foreach add_device_to_list device device_list - echo $device_list + echo "$device_list" } usage() { @@ -59,7 +57,7 @@ while [ "$1" != "" ]; do -t | --target) shift target=$1 - handle_device $target + handle_device "$target" ;; -j | --json) json=1 @@ -74,6 +72,6 @@ while [ "$1" != "" ]; do shift done -if [ ! -z $json ]; then - get_json_dump $target $username $password | sed 's/Content-Type:\ application\/json//' +if [ -n "$json" ]; then + get_json_dump "$target" "$username" "$password" | sed 's/Content-Type:\ application\/json//' fi |