Skip to content
This repository was archived by the owner on Mar 16, 2023. It is now read-only.

Commit 66a7ccf

Browse files
author
Evan Meagher
committed
Rm bare variable usage to fix Ansible 2.x deprecation warning
1 parent 84c86fe commit 66a7ccf

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

tasks/main.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,11 @@
3535
- "{{python_pip_tgz_local_path}}"
3636

3737
- name: install apt packages
38-
apt: name={{item}} state=installed update_cache=yes
39-
with_items: python_package_deps
38+
apt:
39+
name: "{{item}}"
40+
state: installed
41+
update_cache: yes
42+
with_items: "{{python_package_deps}}"
4043

4144
- include: readline.yml
4245
- include: python.yml

0 commit comments

Comments
 (0)