I am probably missing your point. Circular module dependencies are not allowed, and for a reason. Your deviation module makes xyz-tempa dependent on xyz-tempb, since a leaf defined in the former is now typed by a type from the latter; and xyz-tempb d...
There is not much to add to the error message itself, the deviation module indeed introduces circular module dependencies. Your options include:
If you have control over the date model, fix the problem, e.g. by moving the typedef to another module t...
Have a look here. In short, you cannot use full XPath expressions as rule paths, only XPaths where predicates, if present, must identify key values. So yes, “the issue is with the description part”, as you write, and there is hardly any simple NACM-o...
The package needs to be compiled first, something like
make -C packages/drned-xmnr/src all
or, since you need to provide PYTHONPATH pointing to NSO’s PyAPI,
env PYTHONPATH=$NCS_DIR/src/ncs/pyapi make -C packages/drned-xmnr/src all
By the way, this is...
The C language MAAPI contains maapi_get_rollback_id, see also man confd_lib_maapi. Most, hopefully all C functions are available to the low-level Python binding, but obviously not all of them make it to the high-level binding that you are using, so y...