13 lines
694 B
Bash
Executable File
13 lines
694 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
SCRIPT_MD5_SUM=$(md5sum cron-example-with-diff-dstdom.sh|awk '{print $1}')
|
|
SCRIPT_URL="https://raw.githubusercontent.com/elico/cp-tls-inspection-application-update-cron/master/cron-example-with-diff-dstdom.sh"
|
|
DST_DOMAIN_LIST_URL="https://gist.githubusercontent.com/elico/249034a199d17ce52524f47fad49964f/raw/bdd95d87232f8173185acc14540d58bfb2c9ff79/010-GeneralTLSInspectionBypass.dstdom"
|
|
APP_NAME="NgTechBypassDstDomain"
|
|
SCRIPT_PATH="/storage/cron-example-with-diff-dstdom.sh"
|
|
|
|
echo -e "#!/usr/bin/env bash\nwget ${SCRIPT_URL} \\
|
|
-O ${SCRIPT_PATH} && \\
|
|
md5sum ${SCRIPT_PATH} | grep \"^${SCRIPT_MD5_SUM} \" && \\
|
|
bash ${SCRIPT_PATH} ${APP_NAME} ${DST_DOMAIN_LIST_URL}"
|