fix lints

This commit is contained in:
nazunalika 2021-08-30 17:25:18 -07:00
parent 8780f712a6
commit d2b9157848
Signed by: label
GPG Key ID: 6735C0E1BD65D048
3 changed files with 9 additions and 0 deletions

View File

@ -38,3 +38,4 @@
mode: '0644'
owner: root
group: root
...

View File

@ -9,6 +9,9 @@
remote_src: true
src: /etc/httpd/conf.d/{{ item }}.template
dest: /etc/httpd/conf.d/{{ item }}
mode: '0644'
owner: root
group: root
loop:
- openqa.conf
- openqa-ssl.conf
@ -102,6 +105,7 @@
- name: Run fifloader.py
command: ./fifloader.py -l -c templates.fif.json templates-updates.fif.json
changed_when: "1 != 1"
args:
chdir: "{{ openqa_homedir }}/share/tests/rocky"
@ -128,6 +132,7 @@
- name: Verify ISO checksums
command: shasum -a 256 --ignore-missing -c CHECKSUM
changed_when: "1 != 1"
args:
chdir: "{{ openqa_homedir }}/share/factory/iso/fixed"
@ -146,3 +151,5 @@
FLAVOR=minimal-iso \
VERSION={{ rocky_version }} \
BUILD="{{ '%Y%m%d.%H%M%S' | strftime }}.0"
changed_when: "1 != 1"
...

View File

@ -65,3 +65,4 @@ openqa_services:
- openqa-websockets
- openqa-webui
- fm-consumer@fedora_openqa_scheduler
...