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:
parent
ff43534143
commit
933a16249b
232 changed files with 117 additions and 46 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue