aboutsummaryrefslogtreecommitdiffstats
path: root/roles/raspbian/defaults/main.yml
blob: 0bb24bcef9ef0066d0f3e968e0b6ad996a4a27eb (plain) (blame)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
---
journald_conf:
  # don't write journal to sd-card,
  'Journal.Storage': 'volatile'
  # just keep the last 16M in memory
  'Journal.RuntimeMaxUse': '16M'
  'Journal.ForwardToSyslog': 'no'

apt_repos:
  raspbian:
    # doesn't support https, psh
    uri: 'http://raspbian.raspberrypi.org/raspbian'
    suite: '{{ ansible_distribution_release }}'

apt_packages:
  # remove all this crap
  'vim-tiny': absent
  'mountall': absent
  'libmnl-dev': absent
  'cifs-utils': absent
  'samba-common': absent
  'nfs-common': absent
  'blends-tasks': absent
  'info': absent
  'geoip-database': absent
  'iso-codes': absent
  'dmidecode': absent
  'debconf-i18n': absent
  'rename': absent
  'libpng-tools': absent
  'v4l-utils': absent
  'hardlink': absent
  'libpam-chksshpwd': absent
  'libsysfs2': absent
  'ed': absent
  'ncdu': absent
  'libpng-dev': absent
  'fakeroot': absent
  'libusb-0.1-4': absent
  'libpng16-16': absent
  'libfakeroot': absent
  'libboost-iostreams1.60.0': absent
  'libboost-iostreams1.58.0': absent
  'tcpd': absent
  'libmtp-runtime': absent
  'libglib2.0-data': absent
  'libfreetype6-dev': absent
  'dphys-swapfile': absent
  'luajit': absent
  'libsasl2-modules': absent
  'libestr0': absent
  'libfastjson4': absent
  'net-tools': absent
  'gdb': absent
  'gdbm-l10n': absent
  'xdg-user-dirs': absent
  'raspberrypi-net-mods': absent
  'libdns-export1104': absent
  'liblogging-stdlog0': absent
  'liblognorm5': absent
  'libudev0': absent
  'libnih-dbus1': absent
  'libnih1': absent
  'plymouth': absent
  'libplymouth4': absent
  'apt-listchanges': absent
  'xml-core': absent
  'rsyslog': absent
  'libident': absent
  'libsigc++-1.2-5c2': absent
  'paxctl': absent
  'paxctld': absent
  'libfile-fcntllock-perl': absent
  'libalgorithm-merge-perl': absent
  'libalgorithm-diff-xs-perl': absent
  'libtext-iconv-perl': absent
  'libtext-wrapi18n-perl': absent
  'libtext-charwidth-perl': absent
  'xauth': absent
  'shared-mime-info': absent
  'libdrm2': absent
  'isc-dhcp-common': absent
  'libdns-export162': absent
  'libisc-export160': absent
  'policykit-1': absent
  'build-essential': absent
  'libc6-dbg': absent
  'libc6-dev': absent
  'pkg-config': absent
  'libraspberrypi-dev': absent
  'gcc': absent
  'cpp': absent
  'gcc-7-base': absent
  'gcc-6': absent
  'gcc-5-base': absent
  'gcc-4.9-base': absent
  'gcc-4.8-base': absent
  'gcc-4.7-base': absent
  'gcc-4.6-base': absent
  'isc-dhcp-client': absent
  'dpkg-dev': absent
  'libdpkg-perl': absent
  'apt-utils': absent
  'avahi-daemon': absent
  'dhcpcd5': absent

# vim: set ts=2 sw=2 et: