aboutsummaryrefslogtreecommitdiff
path: root/rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py
diff options
context:
space:
mode:
Diffstat (limited to 'rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py')
-rw-r--r--rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py b/rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py
index 1aa8fa95..81fe4701 100644
--- a/rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py
+++ b/rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py
@@ -48,7 +48,7 @@ handles = subprocess.check_output((rpkic, "list_self_handles")).splitlines()
argv = [irbe_cli]
for handle in handles:
- argv.extend(("self", "--self_id", handle, "--action", "set",
+ argv.extend(("self", "--self_handle", handle, "--action", "set",
"--rekey", "--reissue", "--run_now"))
subprocess.check_call(argv)
@@ -56,7 +56,7 @@ time.sleep(10)
argv = [irbe_cli]
for handle in handles:
- argv.extend(("self", "--self_id", handle, "--action", "set",
+ argv.extend(("self", "--self_handle", handle, "--action", "set",
"--revoke", "--reissue", "--run_now", "--publish_world_now"))
subprocess.check_call(argv)