> String instanceName = args[2];
> String zone = args[3];
> - String googleUserName = args[4];
> - String sshPrivateKey = Files.toString(new File(args[5]),
> Charset.defaultCharset());
> + String userName = System.getProperty("user.name");
> + String sshPrivateKeyFileName = System.getProperty("user.home") +
> "/.ssh/google_compute_engine";
Does it make sense to mandate this location? Is it so inconvenient to pass this
as a parameter? Or is it _clear_ that everyone will have the file in this
location?
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-examples/pull/63/files#r17208877