summaryrefslogtreecommitdiffstats
path: root/tasks/base.yml
blob: 623d209d90c71118822bd98183cc053bfbb898cb (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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
- name: Remove some packages
  apt: pkg={{ packages }} state=absent purge=yes
  vars:
    packages:
    - aptitude
    - byobu
    - at
    - bc
    - cryptsetup*
    - mdadm
    - netcat-traditional
    - nano
    - emacs-*
    - hc-utils
    - shorewall
    - iptables
    - lvm2
    - dosfstools
    - eatmydata
    - acpid
    - acl
    - fdisk
    - gdisk
    - genisoimage
    - gnupg*
    - gpg-wks-*
    - mtr-tiny
    - net-tools
    - mtr-tiny
    - net-tools
    - xfsprogs
    - traceroute
    - wget
    - python3-lib2to3
    - efibootmgr
    - busybox
    - console-setup
    - debconf-i18n
    - dmidecode
    - task-*
    - tasksel-*
    - inetutils-telnet
    - os-prober
    ##
    - chkrootkit
    - debian-faq
    - debian-handbook
    - debian-policy
    - debian-reference
    - doc-debian
    - iamerican
    - ibritish
    - ienglish-common
    - installation-report
    - laptop-detect
    - lynx
    - manpages-de
    - mutt
    - reportbug
    - rkhunter
    - vnstati
    - wmanx
    - python3-reportbug
    - python3-debianbts
    - locales-all
    ##
    - wamerican
    - wamerican-huge
    - wamerican-insane
    - wamerican-large
    - wamerican-small
    - wbrazilian
    - wbritish
    - wbritish-huge
    - wbritish-insane
    - wbritish-large
    - wbritish-small
    - wbulgarian
    - wcanadian
    - wcanadian-huge
    - wcanadian-insane
    - wcanadian-large
    - wcanadian-small
    - wcatalan
    - wdanish
    - wdutch
    - wfaroese
    - wfrench
    - wgaelic
    - wgalician-minimos
    - wgerman-medical
    - wirish
    - witalian
    - wngerman
    - wnorwegian
    - wogerman
    - wpolish
    - wportuguese
    - wspanish
    - wswedish
    - wswiss
    - wukrainian
    - xauth

- name: Install some common packages
  apt: pkg={{ packages }}
  vars:
    packages:
        - bind9-dnsutils
        - bzip2
        - htop
        - ca-certificates
        - rsync
        - python3
        - less
        - iproute2
        - git
        - curl
        - screen
        - sudo
        - vim-nox
        - qemu-guest-agent
        # Useful for `getent passwd dynamic_user`
        - libnss-systemd

- name: Set timezone
  timezone: name=Europe/Stockholm

- name: Remove ~root/.ssh/authorized_keys
  file: path=/root/.ssh/authorized_keys state=absent

- name: Disable root password
  user: name=root password="!" update_password=always

- name: Set RESUME=none in initramfs.conf
  copy: dest=/etc/initramfs-tools/conf.d/resume content="RESUME=none\n"
        owner=root group=root
        mode=0644
  notify: Update initramfs