Home
last modified time | relevance | path

Searched refs:private_key_path (Results 1 – 3 of 3) sorted by relevance

/tools/acloud/internal/lib/
Dutils.py341 def CreateSshKeyPairIfNotExist(private_key_path, public_key_path): argument
361 private_key_path = os.path.expanduser(private_key_path)
363 private_key_exist = os.path.exists(private_key_path)
367 "will not automatically create the key pairs.", private_key_path,
370 key_folder = os.path.dirname(private_key_path)
375 cmd = SSH_KEYGEN_PUB_CMD + ["-f", private_key_path]
386 "-C", getpass.getuser(), "-f", private_key_path
390 private_key_path, " ".join(cmd))
402 default_pub_key_path = "%s.pub" % private_key_path
412 private_key_path, public_key_path)
Dauth.py64 def _CreateOauthServiceAccountCreds(email, private_key_path, scopes): argument
81 email, private_key_path, scopes=scopes)
85 " error message: %s" % (private_key_path, str(e)))
/tools/acloud/setup/
Dgcp_setup_runner.py96 def SetupSSHKeys(config_path, private_key_path, public_key_path): argument
108 private_key_path = os.path.expanduser(private_key_path)
109 if (private_key_path == "" or public_key_path == ""
110 or private_key_path == _DEFAULT_SSH_PRIVATE_KEY):