blob: f2fa653b026c9ddfdc34ede3528e28b40debddda [file] [log] [blame]
Zsolt Harasztiec7df102016-05-05 13:34:18 -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
Zsolt Haraszti06ecaa42016-05-31 16:46:37 -070015- name: Latest apt packages
16 apt:
17 name: "{{ item }}"
18 with_items: use_latest_for
19 tags: [common]
20
Zsolt Harasztiec7df102016-05-05 13:34:18 -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. Bainbridge97b3f2f2016-06-16 18:08:49 -070028
29- name: Ensure known_hosts file is absent
30 file:
Andy Bavier3833dde2016-08-31 16:09:27 -040031 path: "{{ ansible_env['PWD'] }}/.ssh/known_hosts"
David K. Bainbridge97b3f2f2016-06-16 18:08:49 -070032 state: absent
33
alshabib18704b02016-09-29 15:58:26 -070034- name: Create .ssh directory
35 file: path={{ ansible_env['PWD'] }}/.ssh state=directory mode=0755
36
David K. Bainbridge97b3f2f2016-06-16 18:08:49 -070037- name: Disable Known Host Checking
38 copy:
39 src: files/ssh_config
Andy Bavier3833dde2016-08-31 16:09:27 -040040 dest: "{{ ansible_env['PWD'] }}/.ssh/config"
41 owner: "{{ ansible_env['SUDO_USER'] }}"
42 group: "{{ ansible_env['SUDO_USER'] }}"
David K. Bainbridge97b3f2f2016-06-16 18:08:49 -070043 mode: 0600