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.
This commit is contained in:
ohemorange
2022-07-08 12:27:50 -07:00
committed by GitHub
parent 1da36a9278
commit 184e087edf
+1 -1
View File
@@ -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)