We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa3c81b commit 4eb3597Copy full SHA for 4eb3597
olam/provision_builder.yml
@@ -129,9 +129,9 @@
129
become_user: "{{ username }}"
130
131
- name: Create bindep.txt
132
- ansible.builtin.file:
133
- path: ~/my_custom_ee_project/bindep.txt
134
- state: touch
+ ansible.builtin.template:
+ src: templates/bindep.txt.j2
+ dest: ~/my_custom_ee_project/bindep.txt
135
mode: '0644'
136
become: true
137
olam/templates/bindep.txt.j2
@@ -0,0 +1,10 @@
1
+gcc
2
+libcurl-devel
3
+libxml2-devel
4
+{% if ansible_distribution_major_version == '8' %}
5
+python3.11-devel
6
+{% endif %}
7
+{% if ansible_distribution_major_version == '9' %}
8
+python3-devel
9
10
+openssl-devel
0 commit comments