From 98829b782429a684669f33dd1c4d4dff3428ff6a Mon Sep 17 00:00:00 2001 From: Adam Glasgall Date: Sat, 20 Apr 2013 17:27:06 -0400 Subject: [PATCH] pyroutefs api changes --- debian/changelog | 6 ++++++ server/usr/sbin/invirt-remconffs | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 926c2a3..b60c1ea 100644 --- a/debian/changelog +++ b/debian/changelog @@ -4,6 +4,12 @@ invirt-remote (0.4.16) unstable; urgency=low -- Peter A. Iannucci Tue, 28 May 2013 20:19:00 -0400 +invirt-remote (0.4.15~glasgall3) precise; urgency=low + + * Update for pyroutefs api changes. + + -- Adam Glasgall Sat, 20 Apr 2013 17:26:07 -0400 + invirt-remote (0.4.15~glasgall2) precise; urgency=low * Adjust sys.path in scripts to include the Xen modules diff --git a/server/usr/sbin/invirt-remconffs b/server/usr/sbin/invirt-remconffs index ac4fe15..979e5d0 100755 --- a/server/usr/sbin/invirt-remconffs +++ b/server/usr/sbin/invirt-remconffs @@ -37,11 +37,11 @@ class RemConfFS(routefs.RouteFS): def make_map(self): m = Mapper() - m.connect('', controller='getroot') - m.connect('acl', controller='getmachines') - m.connect('acl/:machine', controller='getacl') - m.connect('adminacl', controller='getadmin') - m.connect('conf', controller='getconf') + m.connect('/', controller='getroot') + m.connect('/acl', controller='getmachines') + m.connect('/acl/:machine', controller='getacl') + m.connect('/adminacl', controller='getadmin') + m.connect('/conf', controller='getconf') return m def getroot(self, **kw): -- 1.7.9.5