Searched refs:private_key_path (Results 1 – 3 of 3) sorted by relevance
/tools/acloud/internal/lib/ |
D | utils.py | 322 def CreateSshKeyPairIfNotExist(private_key_path, public_key_path): argument 342 private_key_path = os.path.expanduser(private_key_path) 344 private_key_exist = os.path.exists(private_key_path) 348 "will not automatically create the key pairs.", private_key_path, 351 key_folder = os.path.dirname(private_key_path) 356 cmd = SSH_KEYGEN_PUB_CMD + ["-f", private_key_path] 367 "-C", getpass.getuser(), "-f", private_key_path 371 private_key_path, " ".join(cmd)) 383 default_pub_key_path = "%s.pub" % private_key_path 393 private_key_path, public_key_path)
|
D | auth.py | 65 def _CreateOauthServiceAccountCreds(email, private_key_path, scopes): argument 82 email, private_key_path, scopes=scopes) 86 " error message: %s" % (private_key_path, str(e)))
|
/tools/acloud/setup/ |
D | gcp_setup_runner.py | 100 def SetupSSHKeys(config_path, private_key_path, public_key_path): argument 112 private_key_path = os.path.expanduser(private_key_path) 113 if (private_key_path == "" or public_key_path == "" 114 or private_key_path == _DEFAULT_SSH_PRIVATE_KEY):
|