Reputation: 45
I have a shell script that automates a bunch of things. One of the things it needs to do is run a javaws script. Right now it runs as follows in the shell script:
javaws /tmp/jnlpgenerator-cli
This causes the security warning to pop up which says :
The website certificate cannot be verified. Do you want to continue?
This shell script is part of an automation tool, so what can be done to modify the above command so that no user interaction is needed?
Upvotes: 0
Views: 561
Reputation: 168815
(One of the very few situations where) a policy file might be best. See the following for more information:
Upvotes: 1