blob: 0ad01a7917e546b08dda4ceacc9f30c3866975fe [file] [log] [blame]
David K. Bainbridgeb5415042016-05-13 17:06:10 -07001- name: JQ is present
2 apt:
3 name: jq
4 force: yes
5 tags: [common]
6
7- name: Host is present
8 lineinfile:
9 dest: /etc/hosts
10 regexp: "^{{ item.host_ip }}"
11 line: "{{ item.host_ip }} {{ item.host_name }}"
12 with_items: hosts
13 tags: [common]
14
David K. Bainbridge59bdb542016-07-01 11:07:45 -070015- name: Latest apt packages
16 apt:
17 name: "{{ item }}"
18 with_items: use_latest_for
19 tags: [common]
20
David K. Bainbridgeb5415042016-05-13 17:06:10 -070021- name: Services are not running
22 service:
23 name: "{{ item }}"
24 state: stopped
25 ignore_errors: yes
26 with_items: obsolete_services
27 tags: [common]
David K. Bainbridge59bdb542016-07-01 11:07:45 -070028
29- name: Ensure SSH Directory
30 file:
31 path: /home/{{ ansible_user }}/.ssh
32 state: directory
33 owner: "{{ ansible_user }}"
34 group: "{{ ansible_user }}"
35 mode: 0700
36 tags: [common]
37
38- name: Ensure known_hosts file is absent
39 file:
40 path: /home/vagrant/.ssh/known_hosts
41 state: absent
42 tags: [common]
43
44- name: Ignore Known Hosts for SSH
45 copy:
46 src: files/ssh-config
47 dest: /home/{{ ansible_user }}/.ssh/config
48 owner: "{{ ansible_user }}"
49 group: "{{ ansible_user }}"
50 mode: 0600
51 tags: [common]
52