Skip to content

Commit

Permalink
Fix lint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bedroge committed Sep 23, 2020
1 parent 07c56b3 commit cfa462e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions stratum0-deploy-cvmfs-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,10 @@
- "/cvmfs/{{ eessi_cvmfs_config_repo.repository.repository }}/etc/cvmfs/domain.d"

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

- name: create contacts file
Expand Down

0 comments on commit cfa462e

Please sign in to comment.