File tree Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Expand file tree Collapse file tree 2 files changed +15
-11
lines changed Original file line number Diff line number Diff line change
1
+ - name : Copy cacerts from deploy host to /exports/cluster/cacerts/
2
+ copy :
3
+ src : " {{ item }}"
4
+ dest : /exports/cluster/cacerts/
5
+ owner : root
6
+ group : root
7
+ mode : 0644
8
+ with_fileglob :
9
+ - " {{ cacerts_cert_dir }}/*"
10
+ delegate_to : " {{ groups['control'] | first }}"
11
+ run_once : true
Original file line number Diff line number Diff line change 72
72
run_once : true
73
73
delegate_to : " {{ groups['control'] | first }}"
74
74
75
- - name : Copy cacerts from deploy host to /exports/cluster/cacerts/
76
- copy :
77
- src : " {{ item }}"
78
- dest : /exports/cluster/cacerts/
79
- owner : root
80
- group : root
81
- mode : 0644
82
- with_fileglob :
83
- - " {{ cacerts_cert_dir | default(appliances_environment_root + '/cacerts') }}/*" # role default
84
- delegate_to : " {{ groups['control'] | first }}"
85
- run_once : true
75
+ - name : Export cacerts
76
+ ansible.builtin.include_role :
77
+ name : cacerts
78
+ tasks_from : export.yml
86
79
when : " 'cacerts' in group_names"
87
80
88
81
- name : Create hostconfig directory
You can’t perform that action at this time.
0 commit comments