4d2f438f90
in ansible/config/base.yml - rephrase the summary line - Disable shebang munging for specific paths. These files are data files. ansible-test munges the shebangs itself. OBS-URL: https://build.opensuse.org/package/show/systemsmanagement/ansible?expand=0&rev=156
11 lines
683 B
Plaintext
11 lines
683 B
Plaintext
# Modules are scripts by definition but are executed from ansible not directly
|
|
addFilter("non-executable-script.*/usr/lib/python.*/site-packages/ansible/modules/.*");
|
|
# same as utils and runner script
|
|
addFilter("non-executable-script.*/usr/lib/python.*/site-packages/ansible/(cli|galaxy|module_utils|plugins/action|runner|utils)/.*.py");
|
|
# no really a lib - ignore rpmlint for this package explicitely
|
|
addFilter("explicit-lib-dependency python3-passlib");
|
|
# standard files, needed for python
|
|
addFilter("files-duplicate /usr/lib/python.*/site-packages/ansible/.*");
|
|
# same for the ansible-test sub-package
|
|
addFilter("files-duplicate /usr/lib/python.*/site-packages/ansible_test/.*");
|