Browse Source

current

master
commit
513ca2a3ec
3 changed files with 16 additions and 0 deletions
  1. +0
    -0
      files/apt-preferences
  2. +3
    -0
      tasks/main.yml
  3. +13
    -0
      tasks/setup_Debian.yml

+ 0
- 0
files/apt-preferences View File


+ 3
- 0
tasks/main.yml View File

@@ -0,0 +1,3 @@
---

- include: setup_Debian.yml

+ 13
- 0
tasks/setup_Debian.yml View File

@@ -0,0 +1,13 @@
---

- name: apt preferences
copy:
src: apt-preferences
dest: /etc/apt/preferences.d/ansible

- name: apt packages installed
apt:
pkg: "{{item}}"
state: present
with_items:
- ansible

Loading…
Cancel
Save