Blame view

Ansible/roles/arduino_Setup/tasks/Install.yml 744 Bytes
2231d332   zabeth18   lancer script she...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  ---
  - name: "Copy file for proxy setup"
    copy:
      src: ../files/proxy.conf
      dest: /etc/apt/apt.conf.d/proxy.conf
      owner: root
      group: root
      mode: '0644'
  
  - name: "verif install python3"
    apt:
      name: python3
      state: present
  
  - name: "verif install python3-pip"
    apt:
      name: python3-pip
      state: present
  
  
  - name: "verif install wiringpi"
    apt:
      name: wiringpi
      state: present
  
  - name: "verif install avrdude"
    apt:
      name: avrdude
      state: present
  
  - name: "verif install lxml pkg"
    pip:
       executable: pip3
       name: lxml
  
  - name: "verif install requests pkg"
    pip:
       executable: pip3
       name: requests
  
  - name: "verif install pyserial pkg"
    pip:
       executable: pip3
       name: pyserial