I am running 7.1.1 ROS and I have an import Script that adds some config on top of Default configuration.
Config.rsc
some commands
...
/tool fetch url=https://curl.haxx.se/ca/cacert.pem
/certificate import file-name=cacert.pem passphrase=""
...
some commands
I Upload this File and call:
/import file-name=Config.rsc
Every command before “tool/fetch” is executed perfectly. i can at least verify that every setting was applied.
But everything after “tool/fetch” does not get applied. Even Stranger: there should be a File called cacert.pem - but IT IS Not there.
But If i call
/tool fetch url=https://curl.haxx.se/ca/cacert.pem
From CLI - it works perfectly. The File gets Written.
But Strange is, when i Paste These two Lines to CLI:
/tool fetch url=https://curl.haxx.se/ca/cacert.pem
/certificate import file-name=cacert.pem passphrase=""
THE Second Line is Not executed!! It Shows Progress of fetch and Then it Just Skips the certificate call.
What do i do wrong?