Skip to content

Commit dd1dc8d

Browse files
committed
Fixed problem with missing setuptools
1 parent 27b5ecc commit dd1dc8d

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

tasks/dependencies.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
become: yes
33
apt:
44
update_cache: yes
5-
name: "{{ item }}"
5+
name:
6+
- tcplay
7+
- python3-setuptools
8+
- python3-pip
9+
- expect
10+
- util-linux
611
state: present
7-
with_items:
8-
- tcplay
9-
- expect
10-
- util-linux
11-
- python3-pip

tasks/setup-deployer.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
- name: Install setuptools for python
2+
become: yes
3+
apt:
4+
name: python3-setuptools
5+
state: present
6+
17
- name: Install via python pip
28
become: yes
39
pip:

0 commit comments

Comments
 (0)