diff options
Diffstat (limited to 'test/security/k8s/tools/casablanca/get_ranchercli.sh')
-rwxr-xr-x | test/security/k8s/tools/casablanca/get_ranchercli.sh | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/test/security/k8s/tools/casablanca/get_ranchercli.sh b/test/security/k8s/tools/casablanca/get_ranchercli.sh index 76d5594b6..8ffbc5f58 100755 --- a/test/security/k8s/tools/casablanca/get_ranchercli.sh +++ b/test/security/k8s/tools/casablanca/get_ranchercli.sh @@ -1,5 +1,23 @@ #!/usr/bin/env bash +# +# @file test/security/k8s/tools/casablanca/get_ranchercli.sh +# @author Pawel Wieczorek <p.wieczorek2@samsung.com> +# @brief Utility for obtaining Rancher CLI tool +# + +# Dependencies: +# wget +# tar +# coreutils +# +# Privileges: +# Script expects to be run with administrative privileges for accessing /usr/local/bin +# +# Usage: +# # ./get_ranchercli.sh [VERSION [ARCH [SYSTEM]]] +# + # Constants DEFAULT_VERSION='v0.6.12' DEFAULT_ARCH='amd64' @@ -20,8 +38,7 @@ wget "$URL" tar xf "$ARCHIVE" # Installation -echo '# Privilege elevation needed to move Rancher CLI binary to /usr/local/bin' -sudo mv "${DIRECTORY}/rancher" /usr/local/bin/ +mv "${DIRECTORY}/rancher" /usr/local/bin/ # Cleanup rmdir "$DIRECTORY" |