Home
last modified time | relevance | path

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

/tools/acloud/setup/
Dgcp_setup_runner.py100 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):
/tools/acloud/internal/lib/
Dutils.py340 def CreateSshKeyPairIfNotExist(private_key_path, public_key_path): argument
360 private_key_path = os.path.expanduser(private_key_path)
362 private_key_exist = os.path.exists(private_key_path)
366 "will not automatically create the key pairs.", private_key_path,
369 key_folder = os.path.dirname(private_key_path)
374 cmd = SSH_KEYGEN_PUB_CMD + ["-f", private_key_path]
385 "-C", getpass.getuser(), "-f", private_key_path
389 private_key_path, " ".join(cmd))
401 default_pub_key_path = "%s.pub" % private_key_path
411 private_key_path, public_key_path)
Dauth.py66 def _CreateOauthServiceAccountCreds(email, private_key_path, scopes): argument
83 email, private_key_path, scopes=scopes)