diff options
author | Rob Austein <sra@hactrn.net> | 2014-04-02 01:48:20 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-04-02 01:48:20 +0000 |
commit | 1d7168b117b15737741d962ab18d70c078b8e329 (patch) | |
tree | 0e98530993f78ad794078a018f258fe2c2e21157 /rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py | |
parent | c8e73df71a7be6c71e9fa2acee619c8d6e026f05 (diff) |
Sigh, s/--self_id/--self_handle/.
svn path=/branches/tk671/; revision=5730
Diffstat (limited to 'rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py')
-rw-r--r-- | rpkid/upgrade-scripts/upgrade-irdbd-to-0.5678.py | 4 |
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) |