quick fix

This commit is contained in:
nazunalika 2021-01-23 22:21:14 -07:00
parent d5d41718be
commit 50f6d3a5fb
2 changed files with 5 additions and 5 deletions

View File

@ -4,8 +4,8 @@
file:
path: "{{ koji_mount }}"
state: directory
owner: apache
group: apache
owner: '48'
group: '48'
mode: '0755'
- name: Mount the NFS store
@ -20,7 +20,7 @@
file:
path: "{{ koji_mount }}/{{ item }}"
state: directory
owner: apache
group: apache
owner: '48'
group: '48'
mode: '0755'
with_items: "{{ koji_default_directories }}"

View File

@ -45,6 +45,6 @@ Alias /kojifiles "{{ koji_mount }}/"
<Location /kojihub/ssllogin>
AuthType GSSAPI
AuthName "GSSAPI Single Sign On Login"
GssapiCredStore keytab:{{ koji_hub_keytab }}
GssapiCredStore keytab:{{ koji_web_keytab }}
Require valid-user
</Location>