This file is indexed.

/usr/share/yuma/modules/helloworld.yang is in libyuma-base 2.10-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module helloworld {

    namespace "http://helloworld.com/ns/helloworld";

    prefix "helloworld";

    organization  "helloworld organization";

    description 
      "helloworld module";

    revision 2016-09-15 {
        description
            "Added config false; /helloworld-state";
    }

    revision 2013-04-02 {
        description
            "Initial revision";
    }

    container helloworld-state {
        config false;
        description
           "Helloworld example for creating YANG-netconfd SIL modules";
        leaf message {
            type string;
        }
    }
    container helloworld {
        description
           "Helloworld example for creating YANG-netconfd SIL modules";
        leaf message {
            type string;
        }
    }
}