Skip to content
Snippets Groups Projects
Commit 53cf8286 authored by Lars Beckers's avatar Lars Beckers Committed by Thomas Schneider
Browse files

replace generic include keyword

Ansible has for some time deprecated its usage in favor of newer, more
specialised modules.
parent f5716e81
No related branches found
No related tags found
1 merge request!22replace generic include keyword
Pipeline #4340 passed
......@@ -13,11 +13,11 @@
- apt
- repos
- include: repositories.yml
- import_tasks: repositories.yml
vars:
src: ''
- include: repositories.yml
- import_tasks: repositories.yml
when: apt_src_enable
vars:
src: '-src'
......
......@@ -65,7 +65,7 @@
tags:
- fstrim
- include: logging.yml
- import_tasks: logging.yml
- meta: flush_handlers
- include: network.yml
- import_tasks: network.yml
- meta: flush_handlers
---
- include: locale.yml
- import_tasks: locale.yml
- meta: flush_handlers
- include: timezone.yml
- import_tasks: timezone.yml
- meta: flush_handlers
- include: ntpd.yml
- import_tasks: ntpd.yml
when: not localization_prefer_timesyncd
- include: timesyncd.yml
- import_tasks: timesyncd.yml
when: localization_prefer_timesyncd
- meta: flush_handlers
---
- include: shell.yml
- import_tasks: shell.yml
- meta: flush_handlers
- include: sudo.yml
- import_tasks: sudo.yml
- meta: flush_handlers
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment