mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
ansible requires to either use "#!/bin/bash -eu" or "#!/bin/bash -eux" for bash shebangs.
6 lines
94 B
Bash
6 lines
94 B
Bash
#!/bin/bash -eu
|
|
|
|
for i in roles/ipa*/*/*.py; do
|
|
python utils/gen_module_docs.py "$i"
|
|
done
|