Changing ResourceManager naming for platform::ResourceName
[nepi.git] / src / nepi / resources / linux / gretunnel.py
index 087eb7a..0d4962f 100644 (file)
@@ -30,7 +30,7 @@ import os
 
 @clsinit_copy
 class LinuxGRETunnel(LinuxTunnel):
-    _rtype = "LinuxGRETunnel"
+    _rtype = "linux::GRETunnel"
     _help = "Constructs a tunnel between two Linux endpoints using a UDP connection "
     _backend = "linux"
 
@@ -72,7 +72,7 @@ class LinuxGRETunnel(LinuxTunnel):
 
         m = re.search("(\d+)% packet loss", str(out))
         if not m or int(m.groups()[0]) == 100:
-             msg = " Erroro establishing GRE Tunnel"
+             msg = " Error establishing GRE Tunnel"
              self.error(msg, out, err)
              raise RuntimeError, msg