20 lines
372 B
YAML
20 lines
372 B
YAML
![]() |
- name: Ensure config directory
|
||
|
file:
|
||
|
state: directory
|
||
|
path: '/etc/reprepro/{{ _dir }}/'
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0755
|
||
|
|
||
|
- name: Copy config files
|
||
|
copy:
|
||
|
src: '{{ _dir }}/config/{{ item }}'
|
||
|
dest: '/etc/reprepro/{{ _dir }}/{{ item }}'
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: 0644
|
||
|
loop:
|
||
|
- distributions
|
||
|
- options
|
||
|
- updates
|