- The plugin system is a robust and extensive feature that auto-detects the hive type and execute the relevant plugins.
To see a comprehensive list, please refer to the Validation cases report
Adding a new plugin is very straight forward:
- Copy the
regipy/plugins/plugin_template.py
file to the relevant folder (according to hive type) - Update the code:
- Update the
NAME
parameter and the Class name accordingly (NAME in snake case, Class name in camel case) - Feel free to use/add any utility function to
regipy/utils.py
- Import your class in
regipy/plugins/__init__.py
- Update the
- Add a validation case. This is mandatory and replaces the old regipy tests.