copr-pulp: symlink /usr/bin/python to /usr/bin/python3

This commit is contained in:
Jakub Kadlcik 2023-08-20 18:35:04 +02:00
parent aac1379587
commit e87dafc1b0

View file

@ -17,6 +17,19 @@
- import_tasks: "{{ tasks_path }}/aws_cloud.yml"
when: datacenter == 'aws'
# TODO Remove in favor of base/tasks/main.yml
- name: install platform-python
package: name={{ item }} state=present
with_items:
- platform-python
# TODO Remove in favor of base/tasks/main.yml
- name: symlink /usr/bin/python to /usr/bin/python3
alternatives:
name: python
link: /usr/bin/python
path: /usr/bin/python3
- name: cloud basic setup
hosts: copr_pulp_dev_aws:copr_pulp_aws
gather_facts: True