Blame view

Ansible/roles/arduino_Setup/tasks/Install.yml 1.04 KB
2231d332   zabeth18   lancer script she...
1
2
3
4
5
6
7
8
9
  ---
  - 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'
  
38eb483d   Thorsieger   ajout de tous les...
10
11
12
  - name: "Copy file for GPIO setup"
    copy:
      src: ../../../../codes/avrdude_gpio.conf
7d7542f7   root   correction du che...
13
      dest: ~/avrdude_gpio.conf
38eb483d   Thorsieger   ajout de tous les...
14
15
16
17
      owner: root
      group: root
      mode: '0644'
  
2231d332   zabeth18   lancer script she...
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
  - 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
  
38eb483d   Thorsieger   ajout de tous les...
39
40
41
42
43
44
45
46
47
48
  - name: "verif install gcc-avr"
    apt:
      name: gcc-avr
      state: present
  
  - name: "verif install avr-libc"
    apt:
      name: avr-libc
      state: present
  
2231d332   zabeth18   lancer script she...
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  - 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
7d7542f7   root   correction du che...
63