# HG changeset patch # User Meredith Howard # Date 1497492569 14400 # Node ID 76686ae96f48a9fb548af47dd050484aa980484f # Parent 2a04e6d7bfcc968324f2da101ced278770717c6b squish diff --git a/roles/repositories/tasks/debian.yml b/roles/repositories/tasks/debian.yml --- a/roles/repositories/tasks/debian.yml +++ b/roles/repositories/tasks/debian.yml @@ -1,10 +1,10 @@ --- -- name: add aptitude - apt: name=aptitude state=installed - -- name: add python-apt - apt: name=python-apt state=installed +- name: add ansible/apt dependencies + apt: name={{item}} state=installed + with_items: + - ansible + - python-apt - include: debian-stable.yml when: ansible_distribution_release != 'NA'