projects
/
noc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Grant all members of NOC access to ctf.realraum.at
[noc.git]
/
ansible
/
roles
/
base
/
tasks
/
02debian.yml
1
---
2
- name: disable apt suggests and recommends
3
copy:
4
src: 02no-recommends
5
dest: /etc/apt/apt.conf.d/
6
mode: 0644
7
8
- name: install basic packages
9
apt:
10
name:
11
- less
12
- psmisc
13
- sudo
14
- dstat
15
- mtr-tiny
16
- tcpdump
17
- debian-goodies
18
- lsof
19
- haveged
20
- net-tools
21
- screen
22
- aptitude
23
- unp
24
- ca-certificates
25
- file
26
- nano
27
- python-apt
28
- command-not-found
29
- man-db
30
- lshw
31
state: present
32
33
- name: make sure grml-(etc|scripts)-core is not installed
34
apt:
35
name:
36
- grml-etc-core
37
- grml-scripts-core
38
state: absent
39
purge: yes