Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohemorange <ebportnoy@gmail.com>2022-07-08 22:27:50 +0300
committerGitHub <noreply@github.com>2022-07-08 22:27:50 +0300
commit184e087edf5d440c996981c2975cb8518e08e779 (patch)
tree7ddb02652b153cf6a1a07557a091ecd1ad69ed06
parent1da36a92781d105d22d71fc7c2dcaed8c83134dc (diff)
Prompt for username in finish_release.py (#9343)
The local machine's username may not be the same as the one on the CSS, so let's prompt for it instead.
-rwxr-xr-xtools/finish_release.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/finish_release.py b/tools/finish_release.py
index 79613c2fa..ec749d48f 100755
--- a/tools/finish_release.py
+++ b/tools/finish_release.py
@@ -83,7 +83,7 @@ def publish_windows(css):
:param str css: CSS host name
"""
- username = getpass.getuser()
+ username = input("CSS username (usually EFF username): ")
host = css
command = "ssh -t {}@{} bash /opt/certbot-misc/css/venv.sh".format(username,host)