File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed
Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 1212
1313 - name : create directories
1414 file :
15+ mode : " 755"
1516 path : " {{ item }}"
1617 state : directory
1718 with_list :
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 :
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 }}"
You can’t perform that action at this time.
0 commit comments