Merge branch 'dev' into customize_fstab
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
Jérémy Dubois 2020-10-12 14:47:02 +02:00
commit a40e2b4750
5 changed files with 47 additions and 14 deletions

View file

@ -1,3 +1,4 @@
# yamllint disable rule:line-length
# Playbook command # Playbook command
# First use (become_method: su, and var_files uncommented) : # First use (become_method: su, and var_files uncommented) :
# ansible-playbook evolixisation.yml --ask-vault-pass -CDki hosts -l HOSTNAME -u root # ansible-playbook evolixisation.yml --ask-vault-pass -CDki hosts -l HOSTNAME -u root
@ -40,5 +41,4 @@
tasks_from: exec.yml tasks_from: exec.yml
# environment: # environment:
# yamllint disable-line rule:line-length
# PKG_PATH: "http://ftp.openbsd.org/pub/OpenBSD/{{ ansible_distribution_version }}/packages/{{ ansible_architecture }}/" # PKG_PATH: "http://ftp.openbsd.org/pub/OpenBSD/{{ ansible_distribution_version }}/packages/{{ ansible_architecture }}/"

View file

@ -10,6 +10,15 @@
tags: tags:
- evobackup - evobackup
- name: Fetch daily.local content
command: 'grep "sh /usr/share/scripts/zzz_evobackup" /etc/daily.local'
check_mode: false
register: daily_local_content
failed_when: false
changed_when: false
tags:
- evobackup
- name: Add evobackup cron (disabled) - name: Add evobackup cron (disabled)
lineinfile: lineinfile:
path: /etc/daily.local path: /etc/daily.local
@ -17,6 +26,9 @@
owner: root owner: root
mode: "0644" mode: "0644"
create: true create: true
when:
- not (daily_local_content.stdout
| regex_search('sh /usr/share/scripts/zzz_evobackup'))
tags: tags:
- evobackup - evobackup

View file

@ -79,25 +79,35 @@
- name: cron job for /etc/.git status is installed - name: cron job for /etc/.git status is installed
lineinfile: lineinfile:
path: /etc/daily.local path: /etc/daily.local
line: "{{ item }}" line:
'/usr/local/bin/git --git-dir=/etc/.git --work-tree=/etc status --short'
owner: root owner: root
mode: "0644" mode: "0644"
create: true create: true
when: etc_git_monitor_status when: etc_git_monitor_status
tags: tags:
- etc-git - etc-git
with_items:
- 'next_part "Checking /etc git status:"' - name: cron job for /etc/.git status is installed - next_part
- '/usr/local/bin/git --git-dir=/etc/.git --work-tree=/etc status --short' lineinfile:
path: /etc/daily.local
line: 'next_part "Checking /etc git status:"'
insertbefore:
'/usr/local/bin/git --git-dir=/etc/.git --work-tree=/etc status --short'
when: etc_git_monitor_status
tags:
- etc-git
- name: cron job for /etc/.git status is removed - name: cron job for /etc/.git status is removed
lineinfile: lineinfile:
path: /etc/daily.local path: /etc/daily.local
line: line: "{{ item }}"
'/usr/local/bin/git --git-dir=/etc/.git --work-tree=/etc status --short'
owner: root owner: root
mode: "0644" mode: "0644"
state: absent state: absent
with_items:
- 'next_part "Checking /etc git status:"'
- '/usr/local/bin/git --git-dir=/etc/.git --work-tree=/etc status --short'
when: not etc_git_monitor_status when: not etc_git_monitor_status
tags: tags:
- etc-git - etc-git

View file

@ -32,23 +32,34 @@
- name: Nagios plugins are installed - name: Nagios plugins are installed
copy: copy:
src: plugins_bsd/ src: plugins_bsd/{{ item.name }}
dest: /usr/local/libexec/nagios/plugins/ dest: /usr/local/libexec/nagios/plugins/{{ item.name }}
owner: root owner: root
group: wheel group: wheel
mode: "0755" mode: "0755"
force: "{{ item.force }}"
with_items:
- {name: 'check_carp_if', force: true}
- {name: 'check_connections_state.sh', force: false}
- {name: 'check_ipsecctl.sh', force: false}
- {name: 'check_openbgpd', force: true}
- {name: 'check_openvpn', force: false}
- {name: 'check_openvpn.pl', force: true}
- {name: 'check_ospfd_simple', force: true}
- {name: 'check_packetfilter', force: true}
notify: restart nrpe notify: restart nrpe
- name: Nagios plugins are installed - template - name: Nagios plugins are installed - template
template: template:
src: plugins_bsd/{{ item }}.j2 src: plugins_bsd/{{ item.name }}.j2
dest: /usr/local/libexec/nagios/plugins/{{ item }} dest: /usr/local/libexec/nagios/plugins/{{ item.name }}
owner: root owner: root
group: wheel group: wheel
mode: "0755" mode: "0755"
force: "{{ item.force }}"
with_items: with_items:
- 'check_pf_states' - {name: 'check_pf_states', force: false}
- 'check_free_mem.sh' - {name: 'check_free_mem.sh', force: true}
notify: restart nrpe notify: restart nrpe
- name: Starting and enabling nrpe - name: Starting and enabling nrpe