mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-06-11 19:25:54 +00:00
Added a pipeline file (tests/azure/build-containers.yml) to build test containers and upload them to quay.io. The pipeline will create containers with IPA pre-installed for testing proposes on three different Linux containers: CentOS 7, CentOS 8 and Fedora Latest.
21 lines
396 B
YAML
21 lines
396 B
YAML
---
|
|
- name: Converge
|
|
hosts: all
|
|
tasks:
|
|
- include_tasks: prepare-common.yml
|
|
|
|
- name: Ensure lock dirs for DS exists
|
|
file:
|
|
state: directory
|
|
owner: dirsrv
|
|
group: dirsrv
|
|
path: "{{ item }}"
|
|
loop:
|
|
- /var/lock/dirsrv/
|
|
- /var/lock/dirsrv/slapd-TEST-LOCAL/
|
|
|
|
- name: Ensure IPA server is up an running
|
|
service:
|
|
name: ipa
|
|
state: started
|