aboutsummaryrefslogtreecommitdiffstats
path: root/ansible/roles/osmocom-workstation/tasks/main.yml
blob: 42d213faf2e00a856d3a8ac68ebab9d63415ac9c (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
---

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

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

- name: install distribution packages
  apt:
    name: "{{ item }}"
    cache_valid_time: 3600
    update_cache: yes
  with_items:
    - iceweasel
    - vim
    - evince
    - valgrind
    - gdb
    - libc6-dbg
    - wireshark
    - tcpdump
    - ccache
    - gnupg
    - openssh-client
    - openssh-server