Skip to content

Commit 07c56b3

Browse files
committed
Fix CI issues
1 parent 5fdfdc8 commit 07c56b3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/ansible-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# targets: |
2424
# playbook_1.yml
2525
# playbook_2.yml
26-
targets: "*.yml group_vars/*.yml "
26+
targets: "*.yml inventory/group_vars/*.yml"
2727
# [optional]
2828
# Arguments to override a package and its version to be set explicitly.
2929
# Must follow the example syntax.

stratum0-deploy-cvmfs-config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
- name: create directories
1414
file:
15+
mode: "755"
1516
path: "{{ item }}"
1617
state: directory
1718
with_list:
@@ -21,12 +22,14 @@
2122

2223
- name: deploy public keys
2324
copy: content="{{ item.key }}" dest="/cvmfs/{{ eessi_cvmfs_config_repo.repository.repository }}{{ item.path }}"
25+
mode: "755"
2426
with_items: "{{ eessi_cvmfs_keys }}"
2527

2628
- name: create contacts file
2729
copy:
2830
content: "{{ eessi_email }}\n"
2931
dest: "/cvmfs/{{ eessi_cvmfs_config_repo.repository.repository }}/etc/cvmfs/contact/{{ eessi_cvmfs_config_repo.domain }}"
32+
mode: "755"
3033

3134
- name: create domain configuration file
3235
copy:
@@ -35,13 +38,15 @@
3538
CVMFS_KEYS_DIR="/cvmfs/{{ eessi_cvmfs_config_repo.repository.repository }}/etc/cvmfs/keys/{{ eessi_cvmfs_config_repo.domain }}"
3639
CVMFS_USE_GEOAPI="{{ eessi_cvmfs_server_urls[0].use_geoapi | default(false) | ternary('yes', 'no') }}"
3740
dest: "/cvmfs/{{ eessi_cvmfs_config_repo.repository.repository }}/etc/cvmfs/domain.d/{{ eessi_cvmfs_config_repo.domain }}.conf"
41+
mode: "755"
3842

3943
- name: create default CVMFS configuration file
4044
copy:
4145
content: |
4246
# For reference see https://sft.its.cern.ch/jira/browse/CVM-878
4347
CVMFS_LOW_SPEED_LIMIT=10000
4448
dest: "/cvmfs/{{ eessi_cvmfs_config_repo.repository.repository }}/etc/cvmfs/default.conf"
49+
mode: "755"
4550

4651
- name: publish CVMFS transaction
4752
command: cvmfs_server publish "{{ eessi_cvmfs_config_repo.repository.repository }}"

0 commit comments

Comments
 (0)