]> git.proxmox.com Git - mirror_frr.git/commitdiff
yang: Temp change interface type to string to allow configuration
authorDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 8 Apr 2020 14:17:24 +0000 (10:17 -0400)
committerDonald Sharp <sharpd@cumulusnetworks.com>
Wed, 8 Apr 2020 14:18:31 +0000 (10:18 -0400)
Temporarily change the interface types in rip and ripng to
strings to allow us to work, since the yang uplift to 1.0
is proving difficult.

Signed-off-by: Donald Sharp sharpd@cumulusnetworks.com>
yang/frr-ripd.yang
yang/frr-ripngd.yang

index 7318eb18d7af26953a1bc9ea2aa22c5ebea5e045..12c72b39b5bbd0a50daa56ebb7e1cb41b89b80cb 100644 (file)
@@ -118,7 +118,7 @@ module frr-ripd {
           "Enable RIP on the specified IP network.";
       }
       leaf-list interface {
-        type frr-interface:interface-ref;
+        type string;
         description
           "Enable RIP on the specified interface.";
       }
@@ -179,14 +179,14 @@ module frr-ripd {
       }
       leaf-list passive-interface {
         when "../passive-default = 'false'";
-        type frr-interface:interface-ref;
+        type string;
         description
           "A list of interfaces where the sending of RIP packets
            is disabled.";
       }
       leaf-list non-passive-interface {
         when "../passive-default = 'true'";
-        type frr-interface:interface-ref;
+        type string;
         description
           "A list of interfaces where the sending of RIP packets
            is enabled.";
index 732f32ea5020cb5417a1af47be6c67b19f3520f6..c58962f5cdd013d85ea04ba34a261852c5677d79 100644 (file)
@@ -76,7 +76,7 @@ module frr-ripngd {
           "Enable RIPng on the specified IPv6 network.";
       }
       leaf-list interface {
-        type frr-interface:interface-ref;
+        type string;
         description
           "Enable RIPng on the specified interface.";
       }