mirror of
https://pagure.io/fedora-infra/ansible.git
synced 2026-04-26 19:42:55 +08:00
26 lines
497 B
YAML
26 lines
497 B
YAML
---
|
|
# tasks file for loopabull
|
|
|
|
- name: Install required packages
|
|
package: name="{{ item }}" state=installed
|
|
with_items:
|
|
- git
|
|
- loopabull
|
|
|
|
- name: configure loopabull
|
|
template:
|
|
src: loopabull.yml.j2
|
|
dest: "{{ansible_cfg_path}}"
|
|
|
|
- name: clone the playbooks repo into playbooks dir
|
|
git:
|
|
repo: "https://pagure.io/releng-automation.git"
|
|
dest: "{{playbooks_dir}}"
|
|
|
|
- name: start and enable loopabull
|
|
service:
|
|
name: loopabull
|
|
state: started
|
|
enabled: yes
|
|
|