Fix followerDistributedDataStore tear down
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / resources / odl-datastore-augmentation.yang
1 module odl-datastore-augmentation {
2     yang-version 1;
3     namespace "urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:aug";
4     prefix "store-aug";
5
6     import odl-datastore-test {prefix test;revision-date "2014-03-13";}
7
8     revision "2014-03-13" {
9         description "Initial revision.";
10     }
11
12
13     augment "/test:test" {
14         leaf name {
15             type string;
16         }
17     }
18
19     augment "/test:test" {
20         container aug-container {
21             container aug-inner-container {
22             }
23         }
24     }
25 }