2022-07-14 08:30:16 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
- name: Fetch new alpine strata
|
|
|
|
include_role:
|
|
|
|
name: fetch-strata
|
|
|
|
vars:
|
|
|
|
strata: alpine
|
2022-07-15 20:31:07 +01:00
|
|
|
tags: clean
|
2022-07-14 08:30:16 +01:00
|
|
|
|
|
|
|
|
|
|
|
- name: Enable community repo
|
|
|
|
ansible.builtin.shell:
|
|
|
|
cmd: cat /bedrock/strata/alpine/etc/apk/repositories | head -n1 | sed 's/main/community/g' >> /bedrock/strata/alpine/etc/apk/repositories
|
|
|
|
|
|
|
|
|
|
|
|
- name: Enable https on the repositories
|
|
|
|
ansible.builtin.shell:
|
|
|
|
cmd: sed -i 's/http:\/\//https:\/\//g' /bedrock/strata/alpine/etc/apk/repositories
|