Browse Source
Fix wrong baseurl for centos extra repo for Oracle Linux (#8208)
pull/8215/head
Łukasz Żułnowski
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
roles/bootstrap-os/tasks/bootstrap-centos.yml
|
|
@ -79,7 +79,7 @@ |
|
|
|
- { option: "name", value: "CentOS-{{ ansible_distribution_major_version }} - Extras" } |
|
|
|
- { option: "enabled", value: "1" } |
|
|
|
- { option: "gpgcheck", value: "0" } |
|
|
|
- { option: "baseurl", value: "http://mirror.centos.org/centos/{{ ansible_distribution_major_version }}/extras/$basearch/" } |
|
|
|
- { option: "baseurl", value: "http://mirror.centos.org/centos/{{ ansible_distribution_major_version }}/extras/$basearch/os/" } |
|
|
|
when: |
|
|
|
- use_oracle_public_repo|default(true) |
|
|
|
- '''ID="ol"'' in os_release.stdout_lines' |
|
|
|