File: module-a-dv2.yang

package info (click to toggle)
libnetconf2 3.7.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,200 kB
  • sloc: ansic: 33,538; sh: 49; makefile: 21
file content (21 lines) | stat: -rw-r--r-- 375 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
module module-a-dv2 {

    namespace "urn:jmu:params:xml:ns:yang:module-a-dv2";
    prefix dv2;
    
    import module-a {
        prefix a;
    }
    
    description 
        "Contains some deviations to module-a";

    deviation "/a:top/a:type" {   
        deviate add {
            default "admin";
            must "count(.) = 1";   
        }        
    }   
    
}