diff options
author | Michael Elkins <melkins@tislabs.com> | 2016-04-21 21:23:25 +0000 |
---|---|---|
committer | Michael Elkins <melkins@tislabs.com> | 2016-04-21 21:23:25 +0000 |
commit | 40c34bb6427f634ee4c9fc4fe7539d7f993abc19 (patch) | |
tree | 879330015ac72897ec06de39eef4586933958d38 /rp | |
parent | e7129a3c7e5e7bfaf0bc63140200a3bb847446ac (diff) |
Update the GUI to work with the new rcynicdb.
svn path=/branches/tk705/; revision=6365
Diffstat (limited to 'rp')
-rwxr-xr-x | rp/rcynic/rcynic-cron | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/rp/rcynic/rcynic-cron b/rp/rcynic/rcynic-cron index 93abb822..e7e564b3 100755 --- a/rp/rcynic/rcynic-cron +++ b/rp/rcynic/rcynic-cron @@ -68,11 +68,9 @@ run(os.path.join(rpki.autoconf.bindir, "rpki-rtr"), "cronjob", cwd = os.path.join(rpki.autoconf.RCYNIC_DIR, "rpki-rtr")) -# rpkigui-rcynic isn't working with rcynicng yet, sorry. -if False: - prog = os.path.join(rpki.autoconf.libexecdir, "rpkigui-rcynic") - if os.path.exists(prog): - run(prog) +prog = os.path.join(rpki.autoconf.libexecdir, "rpkigui-rcynic") +if os.path.exists(prog): + run(prog) if rpki.autoconf.RCYNIC_HTML_DIR and os.path.exists(os.path.dirname(rpki.autoconf.RCYNIC_HTML_DIR)): run(os.path.join(rpki.autoconf.bindir, "rcynic-html"), |