aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/osmocom-workstation/tasks/main.yml
blob: ae29111e3b066ff881c78e39fba72d3e89149c3e (plain)
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
46
47
---

- name: add user
  user:
    name: "{{ osmocom_user }}"
    generate_ssh_key: yes
    ssh_key_bits: 4096
    ssh_key_type: rsa
    shell: /usr/bin/zsh
    groups: docker

- name: include git repos
  include: git-repos.yml

- name: install distribution packages
  apt:
    name:
      - iceweasel
      - vim
      - evince
      - valgrind
      - gdb
      - libc6-dbg
      - wireshark
      - tcpdump
      - ccache
      - gnupg
      - openssh-client
      - openssh-server
      - console-common
      - console-data
      - meld
      - emacs
      - gitk
      - okular
      - libreoffice-calc
      - libreoffice-draw
      - libreoffice-impress
      - libreoffice-writer
      - gnumeric
      - openvpn
      - fvwm
      - xfce4
      - network-manager
      - modemmanager
    cache_valid_time: 3600
    update_cache: yes