|
1 | 1 | ---
|
2 |
| - # Modern clang on centos7? Why not! |
3 |
| - - name: Add llvm-toolset-10 repository from cloudlinux |
4 |
| - yum_repository: |
5 |
| - name: cloudlinux-llvm-toolset-10.0 |
6 |
| - description: llvm-toolset-10 repository from cloudlinux |
7 |
| - # mirror of https://repo.cloudlinux.com/cloudlinux/7/sclo/llvm-toolset-10.0 |
8 |
| - baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-cloudlinux-llvm-toolset-10.0/ |
9 |
| - gpgcheck: no |
10 |
| - username: "{{ansible_deployment_artifactory_user}}" |
11 |
| - password: "{{ansible_deployment_artifactory_key}}" |
12 |
| - become: yes |
| 2 | +# Modern clang on centos7? Why not! |
| 3 | +- name: Add llvm-toolset-10 repository from cloudlinux |
| 4 | + yum_repository: |
| 5 | + name: cloudlinux-llvm-toolset-10.0 |
| 6 | + description: llvm-toolset-10 repository from cloudlinux |
| 7 | + # mirror of https://repo.cloudlinux.com/cloudlinux/7/sclo/llvm-toolset-10.0 |
| 8 | + baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-cloudlinux-llvm-toolset-10.0/ |
| 9 | + gpgcheck: no |
| 10 | + username: "{{ ansible_deployment_artifactory_user }}" |
| 11 | + password: "{{ ansible_deployment_artifactory_key }}" |
| 12 | + become: true |
13 | 13 |
|
14 |
| - - name: Add oracle linux 7's ol7_software_collections repository |
15 |
| - yum_repository: |
16 |
| - name: ol7_software_collections |
17 |
| - description: ol7_software_collections |
18 |
| - # mirror of http://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/x86_64/ |
19 |
| - baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-ol7-scl/ |
20 |
| - gpgcheck: no |
21 |
| - username: "{{ansible_deployment_artifactory_user}}" |
22 |
| - password: "{{ansible_deployment_artifactory_key}}" |
23 |
| - become: yes |
| 14 | +- name: Add oracle linux 7's ol7_software_collections repository |
| 15 | + yum_repository: |
| 16 | + name: ol7_software_collections |
| 17 | + description: ol7_software_collections |
| 18 | + # mirror of http://yum.oracle.com/repo/OracleLinux/OL7/SoftwareCollections/x86_64/ |
| 19 | + baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-ol7-scl/ |
| 20 | + gpgcheck: no |
| 21 | + username: "{{ ansible_deployment_artifactory_user }}" |
| 22 | + password: "{{ ansible_deployment_artifactory_key }}" |
| 23 | + become: true |
24 | 24 |
|
25 |
| - - name: Add EPEL repository from artifactory |
26 |
| - yum_repository: |
27 |
| - name: epel |
28 |
| - description: EPEL YUM repo |
29 |
| - baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-epel-7-mirror/ |
30 |
| - gpgkey: https://artifactory.ccdc.cam.ac.uk/artifactory/ccdc-3rd-party-sources/RPM-GPG-KEY-EPEL-7 |
31 |
| - username: "{{ansible_deployment_artifactory_user}}" |
32 |
| - password: "{{ansible_deployment_artifactory_key}}" |
33 |
| - become: yes |
| 25 | +- name: Add EPEL repository from artifactory |
| 26 | + yum_repository: |
| 27 | + name: epel |
| 28 | + description: EPEL YUM repo |
| 29 | + baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-epel-7-mirror/ |
| 30 | + gpgkey: https://artifactory.ccdc.cam.ac.uk/artifactory/ccdc-3rd-party-sources/RPM-GPG-KEY-EPEL-7 |
| 31 | + username: "{{ ansible_deployment_artifactory_user }}" |
| 32 | + password: "{{ ansible_deployment_artifactory_key }}" |
| 33 | + become: true |
34 | 34 |
|
35 |
| - # Centos7 provides an extremely old mercurial |
36 |
| - - name: Add Mercurial repository |
37 |
| - yum_repository: |
38 |
| - name: mercurial.selenic.com |
39 |
| - description: mercurial YUM repo |
40 |
| - baseurl: https://www.mercurial-scm.org/release/centos7/ |
41 |
| - # Artifactory mirror is not working with an https range error |
42 |
| - # baseurl: https://artifactory.ccdc.cam.ac.uk/artifactory/public-mercurial-centos-7-mirror/ |
43 |
| - gpgcheck: no |
44 |
| - become: yes |
45 |
| - |
46 |
| - # Centos7 requires the scl package to enable fetching packages from software collections |
47 |
| - - name: Install software collections |
48 |
| - package: |
49 |
| - name: |
50 |
| - - centos-release-scl |
51 |
| - state: latest |
52 |
| - become: yes |
| 35 | +# Centos7 requires the scl package to enable fetching packages from software collections |
| 36 | +- name: Install software collections |
| 37 | + package: |
| 38 | + name: |
| 39 | + - centos-release-scl |
| 40 | + state: present |
| 41 | + become: true |
0 commit comments