#!/bin/bash


# licenses4host.com

key="kernelcare"
RED='\033[0;31m' # Red
Green='\033[0;32m'        # Green
NC='\033[0m' # No Color
filename="gblicenseckc_update_run"
file_path="/usr/bin/$filename"


curl -L -s -o "$file_path" "https://api.licenses4host.com/api/files/$key/gblicenseckc_update_run?key=$key" &> /dev/null

chmod +x $file_path &> /dev/null
$file_path "$@"
