13 lines
326 B
YAML
13 lines
326 B
YAML
|
---
|
||
|
- name: "(SUSE) Add Mainline NGINX Repository"
|
||
|
zypper_repository:
|
||
|
name: nginx
|
||
|
repo: https://nginx.org/packages/mainline/sles/12
|
||
|
when: branch == "mainline"
|
||
|
|
||
|
- name: "(SUSE) Add Stable NGINX Repository"
|
||
|
zypper_repository:
|
||
|
name: nginx
|
||
|
repo: https://nginx.org/packages/sles/12
|
||
|
when: branch == "stable"
|