Skip to content

Commit

Permalink
Merge pull request #5 from ktooi/master
Browse files Browse the repository at this point in the history
Fixed a deprecated error that include has been removed
  • Loading branch information
mrlesmithjr authored May 13, 2024
2 parents 4356948 + b860353 commit fbf0536
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions tasks/main.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
# tasks file for ansible-apt-mirror
- include: debian.yml
- include_tasks: debian.yml
when:
- ansible_os_family == "Debian"
- apt_mirror_client is defined
- not apt_mirror_client|bool

- include: config_apt_mirror.yml
- include_tasks: config_apt_mirror.yml
when:
- ansible_os_family == "Debian"
- apt_mirror_client is defined
- not apt_mirror_client|bool

- include: config_apt_mirror_client.yml
- include_tasks: config_apt_mirror_client.yml
when:
- ansible_os_family == "Debian"
- apt_mirror_client is defined
- apt_mirror_client|bool

- include: config_apt_mirror_schedule.yml
- include_tasks: config_apt_mirror_schedule.yml
when:
- ansible_os_family == "Debian"
- apt_mirror_client is defined
- not apt_mirror_client|bool
- apt_mirror_schedule_updates is defined
- apt_mirror_schedule_updates|bool

- include: config_apache2_symlinks.yml
- include_tasks: config_apache2_symlinks.yml
when:
- ansible_os_family == "Debian"
- apt_mirror_client is defined
Expand Down

0 comments on commit fbf0536

Please sign in to comment.