File tree Expand file tree Collapse file tree 6 files changed +38
-0
lines changed Expand file tree Collapse file tree 6 files changed +38
-0
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,8 @@ roles/*
32
32
! roles /mysql /**
33
33
! roles /systemd /
34
34
! roles /systemd /**
35
+ ! roles /cacerts /
36
+ ! roles /cacerts /**
35
37
! roles /cuda /
36
38
! roles /cuda /**
37
39
! roles /freeipa /
Original file line number Diff line number Diff line change 130
130
- appliances_mode == 'configure'
131
131
- not (dnf_repos_allow_insecure_creds | default(false)) # useful for development
132
132
133
+ - hosts : cacerts
134
+ tags : cacerts
135
+ gather_facts : false
136
+ tasks :
137
+ - name : Install custom cacerts
138
+ import_role :
139
+ name : cacerts
140
+
133
141
- hosts : squid
134
142
tags : squid
135
143
gather_facts : yes
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ - name : Install dependencies
4
+ ansible.builtin.package :
5
+ name : " {{ item }}"
6
+ state : present
7
+ become : true
8
+ with_items :
9
+ - ca-certificates
Original file line number Diff line number Diff line change
1
+ - import_tasks : install.yml
2
+ - import_tasks : runtime.yml
Original file line number Diff line number Diff line change
1
+ ---
2
+
3
+ - name : Copy all certificates
4
+ copy :
5
+ src : " {{ item }}"
6
+ dest : /etc/pki/ca-trust/source/anchors
7
+ owner : root
8
+ mode : 0644
9
+ with_fileglob :
10
+ - " {{ appliances_environment_root }}/cacerts"
11
+ become : true
12
+
13
+ - name : Update trust store
14
+ command : update-ca-trust extract
15
+ become : true
Original file line number Diff line number Diff line change
1
+ ---
2
+
You can’t perform that action at this time.
0 commit comments