ansible-ops-management/tasks/bugzilla_install.yml

61 lines
1.5 KiB
YAML
Raw Normal View History

2022-02-27 03:19:20 +00:00
---
# Install bugzilla properly, including modules and stuff
- name: Check for a localconfig file
stat:
path: "{{ bugzilla_dir }}/localconfig"
register: conf_result
- name: Deploy answer file
2022-03-28 05:01:23 +00:00
ansible.builtin.template:
2022-02-27 03:19:20 +00:00
src: "var/www/bugzilla/answer"
dest: "{{ bugzilla_dir }}/answer"
owner: root
group: apache
mode: "0640"
when: not conf_result.stat.exists
- name: Run checksetup.pl
shell: "set -o pipefail && /usr/bin/perl checksetup.pl {{ bugzilla_dir }}/answer"
args:
chdir: "{{ bugzilla_dir }}"
changed_when: "1 != 1"
when: not conf_result.stat.exists
- name: Deploy proper configuration
2022-03-28 05:01:23 +00:00
ansible.builtin.template:
2022-02-27 03:19:20 +00:00
src: "var/www/bugzilla/localconfig.j2"
dest: "{{ bugzilla_dir }}/localconfig"
owner: root
group: apache
mode: '0640'
- name: Install the proper modules
shell: "set -o pipefail && /usr/bin/perl install-module.pl {{ item }}"
changed_when: "1 != 1"
args:
chdir: "{{ bugzilla_dir }}"
with_items:
- 'Net::SAML2'
- 'Template'
- 'Template::Plugin::GD::Image'
- 'HTML::FormatText::WithLinks'
- 'PatchReader'
- 'Crypt::OpenSSL::Verify'
- 'Crypt::OpenSSL::RSA'
- 'JSON::RPC'
- 'XML::Twig'
- 'Test::Taint'
- name: Re-run checksetup.pl
shell: "set -o pipefail && /usr/bin/perl checksetup.pl"
args:
chdir: "{{ bugzilla_dir }}"
changed_when: "1 != 1"
- name: Remove answer file
2022-03-28 05:01:23 +00:00
ansible.builtin.file:
2022-02-27 03:19:20 +00:00
path: "{{ bugzilla_dir }}/answer"
state: absent
...