1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-04 08:01:49 +00:00

feat: remove hcloud_ prefix from all modules names (#390)

##### SUMMARY

This simplifies the name of the modules from
`hetzner.hcloud.hcloud_firewall` to `hetzner.hcloud.firewall`. While
maintaining backward compatibility with the old names.

Further changes such as updating the test or the documentation will be
done in a future PR to maintain the git history when squashing the PRs.

##### ISSUE TYPE

- Feature Pull Request
This commit is contained in:
Jonas L 2023-11-20 13:21:23 +01:00 committed by GitHub
parent ff43534143
commit 933a16249b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
232 changed files with 117 additions and 46 deletions

View file

@ -2,7 +2,7 @@
# Sync the integration test files from the template to all the integrations targets.
integration_targets="tests/integration/targets/hcloud_"
integration_targets="tests/integration/targets/"
integration_common="tests/integration/common"
# banner
@ -20,6 +20,9 @@ copy_file() {
}
for target in "$integration_targets"*; do
if [[ "$(basename "$target")" = setup_* ]]; then
continue
fi
copy_file "$integration_common"/defaults/main/common.yml "$target"/defaults/main/common.yml
copy_file "$integration_common"/tasks/main.yml "$target"/tasks/main.yml
done