Xentrk
Part of the Furniture
Adding this function to the installer may help. May need to check with the Diversion and Skynet authors if a process list function needs to happen for the entry to take effect.You need to whitelist "codeload.github.com" in Diversion.
Code:
# Create shared-Scribe-whitelist file if one does not exist
# to prevent codeload.github.com from being blocked by AB-Solution and Skynet
whitelist_github_domain () {
if [ ! -s "/jffs/shared-Scribe-whitelist" ];then
printf "codeload.github.com\n" > /jffs/shared-Scribe-whitelist
fi
}