aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFredrik Thulin <fredrik@thulin.net>2016-08-11 11:27:22 +0200
committerFredrik Thulin <fredrik@thulin.net>2016-08-11 11:27:22 +0200
commit71fd6d6b4e3dc9df0ba91bc11219c0fd68629154 (patch)
tree5caec913126748fea849e2e11507f077fb875102
parent2a9a41b399cfd76943cc221a78f80313157b7331 (diff)
make work with the cli-test user 'ct' too
-rwxr-xr-xbin/cryptech_upload4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/cryptech_upload b/bin/cryptech_upload
index 680a0ac..3222e2e 100755
--- a/bin/cryptech_upload
+++ b/bin/cryptech_upload
@@ -77,7 +77,7 @@ def parse_args():
)
parser.add_argument("--username",
- choices = ("so", "wheel"),
+ choices = ("so", "wheel", "ct"),
default = "so",
help = "Username to use when logging into the HSM",
)
@@ -134,6 +134,8 @@ def _execute(dst, cmd):
pin = None
if args.username == 'wheel':
pin = wheel_pin
+ if args.username == 'ct':
+ pin = 'ct'
_write(dst, "\r")
prompt = _read(dst)
if prompt.endswith("Username: "):