ansible/roles/kerneltest/tasks/main.yml
Ryan Lerch 62952df107 ansiblelint fixes-- fqcn[action-core] - file to ansible.builtin.file
Replaces many references to  file: with ansible.builtin.file

Signed-off-by: Ryan Lerch <rlerch@redhat.com>
2025-01-15 10:41:52 +10:00

66 lines
1.7 KiB
YAML

---
# Configuration for the kerneltest webapp
- name: Install needed packages
package: name={{ item }} state=present update_cache=yes
with_items:
- kerneltest
- python-psycopg2
- python-openid-cla
- python-openid-teams
- python-memcached
- libsemanage-python
tags:
- packages
- kerneltest
- name: Create the folder to store the logs
ansible.builtin.file: state=directory
path=/var/www/logs
owner=apache group=apache mode=0755
tags:
- kerneltest
- name: Install all the configuration file of kerneltest
template: src={{ item.file }}
dest={{ item.location }}/{{ item.file }}
owner=apache group=apache mode=0600
with_items:
- { file: kerneltest.cfg, location: /etc/kerneltest }
- { file: kerneltest.conf, location: /etc/httpd/conf.d }
- { file: kerneltest.wsgi, location: /var/www/ }
tags:
- config
- kerneltest
notify:
- restart apache
- name: Create the database scheme
when: inventory_hostname.startswith('kerneltest01')
command: /usr/bin/python2 /usr/share/kerneltest/kerneltest_createdb.py
environment:
KERNELTEST_CONFIG: /etc/kerneltest/kerneltest.cfg
tags:
- kerneltest
- name: Set sebooleans so the app can talk to the db and send emails
seboolean: name=httpd_can_network_connect state=true persistent=true
tags:
- kerneltest
- selinux
- name: Set sebooleans so the app can talk to the db and send emails
seboolean: name=httpd_can_network_connect_db persistent=yes state=yes
tags:
- kerneltest
- selinux
- name: Apply selinux type to log files
ansible.builtin.file: >
dest=/var/www/logs
setype=httpd_sys_rw_content_t
state=directory
recurse=yes
tags:
- kerneltest
- selinux