mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-12 00:03:17 +02:00
14 lines
489 B
YAML
14 lines
489 B
YAML
---
|
|
|
|
- name: Configure openresty repository
|
|
yum_repository:
|
|
name: openresty
|
|
description: Official OpenResty Open Source Repository for CentOS
|
|
baseurl: https://openresty.org/package/centos/$releasever/$basearch
|
|
gpgcheck: True
|
|
gpgkey: "{{ ansible_distribution_major_version is version('8', '>') | ternary('https://openresty.org/package/pubkey2.gpg', 'https://openresty.org/package/pubkey.gpg') }}"
|
|
exclude:
|
|
- perl-IPC-Run
|
|
- perl-IO-Tty
|
|
tags: repo,web
|