roles/common: Add names to include tasks

I'm not sure why these weren't caught by ansible-lint.
This commit is contained in:
Alan Orth 2017-10-03 17:46:55 +03:00
parent e86e2c081b
commit 15bf4727c1
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
2 changed files with 8 additions and 4 deletions

View File

@ -20,9 +20,11 @@
- lrzip
- unzip
- import_tasks: cron-apt.yml
- name: Configure cron-apt
import_tasks: cron-apt.yml
tags: cron-apt
- import_tasks: tarsnap.yml
- name: Install tarsnap
import_tasks: tarsnap.yml
# vim: set sw=2 ts=2:

View File

@ -43,9 +43,11 @@
- command-not-found-data
- python3-commandnotfound
- import_tasks: cron-apt.yml
- name: Configure cron-apt
import_tasks: cron-apt.yml
tags: cron-apt
- import_tasks: tarsnap.yml
- name: Install tarsnap
import_tasks: tarsnap.yml
# vim: set sw=2 ts=2: