diff options
author | Rob Austein <sra@hactrn.net> | 2009-09-05 04:59:48 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2009-09-05 04:59:48 +0000 |
commit | 49f3e601ebb6cd97f7406a48f58a447cf296de9e (patch) | |
tree | c5771ee912dfb1870ace1cea68c73b524caac53f | |
parent | dd8a6c617d9b8c30582e926b7a3da6680ab0f6bc (diff) |
Configure irbe_cli
svn path=/myrpki/yamltest.py; revision=2736
-rw-r--r-- | myrpki/yamltest.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/myrpki/yamltest.py b/myrpki/yamltest.py index 469238ef..3cd65363 100644 --- a/myrpki/yamltest.py +++ b/myrpki/yamltest.py @@ -391,6 +391,7 @@ class allocation(object): r["rpkid", "sql-database"] = "rpki%d" % self.engine r["myirbe", "want_pubd"] = "true" if self.runs_pubd() else "false" r["myirbe", "want_rootd"] = "true" if self.is_root() else "false" + r["irbe_cli", "rpkid-url"] = "https://localhost:%d/left-right" % self.rpkid_port if self.is_root(): root_path = "localhost:%d/%s" % (self.rsync_port, self.name) @@ -404,6 +405,7 @@ class allocation(object): if self.runs_pubd(): r["pubd", "server-port"] = "%d" % self.pubd_port r["pubd", "sql-database"] = "pubd%d" % self.engine + r["irbe_cli", "pubd-url"] = "https://localhost:%d/control/" % self.pubd_port s = self while not s.runs_pubd(): |