Skip to content
Snippets Groups Projects
Verified Commit 8c31bba6 authored by Tomas Krizek's avatar Tomas Krizek
Browse files

distro/tests: fix file permissions set by ansible

Ansible switched default file perm to 600 from more permissive 666. Add
file mode explicitly to avoid issues.
parent e5bb0caf
Branches
Tags
1 merge request!1044distro/tests: fix file permissions set by ansible
Pipeline #67370 passed with stages
in 2 hours, 1 minute, and 59 seconds
......@@ -5,4 +5,5 @@
url: https://127.0.0.1:44353/doh?dns=1Y0BAAABAAAAAAAACWxvY2FsaG9zdAAAAQAB
sha256sum: e5c2710e6ecb78c089ab608ad5861b87be0d1c623c4d58b4eee3b21c06aa2008
dest: /tmp/doh_test
mode: 0644
validate_certs: false
......@@ -9,4 +9,5 @@
get_url:
url: "{{ obs_repofile_url }}"
dest: /etc/yum.repos.d/home:CZ-NIC:{{ item }}.repo
mode: 0644
with_items: "{{ repos }}"
......@@ -4,6 +4,7 @@
get_url:
url: https://gitlab.nic.cz/knot/knot-resolver-release/raw/master/cznic-obs.gpg.asc
dest: /etc/apt/trusted.gpg.d/cznic-obs.gpg.asc
mode: 0644
- name: Add OBS repo(s)
apt_repository:
......
......@@ -4,4 +4,5 @@
get_url:
url: "{{ obs_repofile_url }}"
dest: "/etc/yum.repos.d/home:CZ-NIC:{{ item }}.repo"
mode: 0644
with_items: "{{ repos }}"
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment