add missing

This commit is contained in:
nazunalika 2021-04-01 19:49:59 -07:00
parent ad5f13a85a
commit 94827f80df
Signed by: label
GPG Key ID: CB6D9706D138D190
3 changed files with 10 additions and 1 deletions

View File

@ -104,3 +104,6 @@ matterbridge.rockylinux.org ansible_host=10.100.xx.xx
[matomo] [matomo]
matomo.rockylinux.org ansible_host=10.100.xx.xx matomo.rockylinux.org ansible_host=10.100.xx.xx
[bugtracker]
bugs.rockylinux.org ansible_host=10.100.xx.xx

View File

@ -1,7 +1,7 @@
--- ---
# Installs the mantis bug tracker # Installs the mantis bug tracker
- name: Configure MantisBT - name: Configure MantisBT
hosts: "{{ host }}" hosts: "bugtracker"
become: true become: true
handlers: handlers:

View File

@ -77,3 +77,9 @@
owner: noggin owner: noggin
group: noggin group: noggin
mode: '0600' mode: '0600'
# The only way to run it properly, at least on EL8, is we need this line
- name: Add missing create_app call
lineinfile:
path: "/opt/noggin/noggin/noggin/app.py"
line: "app = create_app()"