OK, I restarted the Gather Service, I restarted The BigFix server and I checked I can access the URL from a browser on the BF server: I could. What else can I look at? Where would I find logs that may cast light onto the issue?
This is what I have. It is one of my first Fixlets, so nothing too complicated…
// Enter your action script here
download "http://gotsvw1577:52311/Uploads/Tivoli/CustomProperties/check_multipath.properties"
download "http://gotsvw1577:52311/Uploads/Tivoli/Scripts/check_multipath.pl"
continue if {(exists file "check_multipath.properties" of folder "__Download" of client folder of current site) and (exists file "check_multipath.pl" of folder "__Download" of client folder of current site) }
move {pathname of file "check_multipath.pl" of folder "__Download" of client folder of current site} /opt/IBM/ITM/scripts/check_multipath.pl
move {pathname of file "check_multipath.properties" of folder "__Download" of client folder of current site} /opt/IBM/ITM/localconfig/ux/scripts_definitions/check_multipath.properties
wait /opt/IBM/ITM/bin/itmcmd agent stop lz
wait /opt/IBM/ITM/bin/itmcmd agent start lz
That was it. I forgot BigFix uses it’s own proxy, not the system one. Added exclusion for its name and localhost, then it worked a treat. Well the download/cache works, the copy does not, but I am sure I can resolve that.