kaylor 0 Posted October 4, 2016 Share Posted October 4, 2016 Hi Can you help me please, I need deploy the ERA Agent using Agent Live Installer from local shared folder without the ESET Repository Download Server. hxxp://help.eset.com/era_admin/63/en-US/agent_live_installer.htm i edit EraAgentOnlineInstaller.sh but in step 4, i cant find " ^& packageLocation ^& ". How i can edit EraAgentOnlineInstaller.sh for MAC OS X? EraAgentInstaller.rar Link to comment Share on other sites More sharing options...
ESET Staff MartinK 383 Posted October 5, 2016 ESET Staff Share Posted October 5, 2016 Unfortunately mentioned article mentioned only windows installer. In case of Mac, I recommend to replace this block of code: if test -n "$eraa_http_proxy_value" then export use_proxy=yes export http_proxy="$eraa_http_proxy_value" (curl --insecure -o "$local_dmg" "$eraa_installer_url" || curl --noproxy "*" --insecure -o "$local_dmg" "$eraa_installer_url") && echo "$local_dmg" >> "$files2del" else curl --insecure -o "$local_dmg" "$eraa_installer_url" && echo "$local_dmg" >> "$files2del" fi on with something like: cp "<LOCATION_OF_PACKAGE_IN_SHARED_FOLDER>" "$local_dmg" && echo "$local_dmg" >> "$files2del" or any alternative that will copy installer file to local disk to expected location. Link to comment Share on other sites More sharing options...
kaylor 0 Posted October 5, 2016 Author Share Posted October 5, 2016 Unfortunately mentioned article mentioned only windows installer. In case of Mac, I recommend to replace this block of code: if test -n "$eraa_http_proxy_value" then export use_proxy=yes export http_proxy="$eraa_http_proxy_value" (curl --insecure -o "$local_dmg" "$eraa_installer_url" || curl --noproxy "*" --insecure -o "$local_dmg" "$eraa_installer_url") && echo "$local_dmg" >> "$files2del" else curl --insecure -o "$local_dmg" "$eraa_installer_url" && echo "$local_dmg" >> "$files2del" fi on with something like: cp "<LOCATION_OF_PACKAGE_IN_SHARED_FOLDER>" "$local_dmg" && echo "$local_dmg" >> "$files2del" or any alternative that will copy installer file to local disk to expected location. Thanks, I will try this. Link to comment Share on other sites More sharing options...
Recommended Posts