summaryrefslogtreecommitdiff
path: root/ansible/exolobe1.yml
blob: 4ff1648307621e4e14018cad4640963768e5880b (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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
- hosts: exolobe1
  remote_user: root
  become: no
  roles:
    - role: sane_debian_system
    - role: self-updating-system
    - role: sshd
    - role: ssd
    - role: comfortable-debian-system
    - role: intel-wifi
    - role: version-controller
    - role: emacs
    - role: gnupg-workstation
    - role: gnome-system
    - role: ansible
    - role: vmhost
    - role: mail-client
    - role: annexed
    - role: unix_users
#    - role: liw
    - role: rust-rustup
    - role: riot-host
    - role: thinkpad

  tasks:
    # Remove ping to force it be reinstalled so that the right
    # capabilities are set.
    - apt:
        name: iputils-ping
        state: absent

    - apt:
        name:
          - ambient-driver
          - asciidoctor
          - black
          - btrfs-progs
          - build-essential
          - cachedir
          - capnproto
          - clab
          - clang
          - daemonize
          - debhelper
          - expect
          - extrautils
          - fio
          - firmware-misc-nonfree
          - fling
          - gddrescue
          - genisoimage
          - gimp
          - graphviz
          - inkscape
          - iputils-ping
          - jq
          - jt
          - libclang-dev
          - libdvd-pkg
          - librsvg2-bin
          - libsqlite3-dev
          - libssl-dev
          - libvirt-dev
          - linux-perf
          - liw-automation
          - llvm
          - lmodern
          - nettle-dev
          - nfs-common
          - obnam
          - obnam-benchmark
          - openpgp-ca
          - ovmf
          - pandoc
          - pandoc-filter-diagram
          - pathdedup
          - pavucontrol
          - pkg-config
          - plantuml
          - printer-driver-ptouch
          - python3
          - python3-requests
          - qemu-user-static
          - radicle
          - sequoia-chameleon-gnupg
          - shellcheck
          - sq-liw
          - sqlite3
          - sshca
          - subplot
          - summain
          - texlive-fonts-recommended
          - texlive-latex-base
          - texlive-latex-extra
          - texlive-latex-recommended
          - texlive-plain-generic
          - unicode
          - usbutils
          - uuid
          - validns
          - vlc
          - vobcopy
          - vmdb2
          - xpdf
          - zerofree


    - name: install command line utilities
      apt:
        name:
        - acpi
        - ambient-run
        - apt-file
        - bc
        - bind9-host
        - cryptsetup
        - curl
        - debmirror
        - dict
        - dict-foldoc
        - dict-gcide
        - dict-jargon
        - dict-vera
        - dict-wn
        - dictd
        - dnsutils
        - git-annex
        - htop
        - iftop
        - ikiwiki
        - info
        - jt
        - locales-all
        - lshw
        - lvm2
        - mmv
        - moreutils
        - mosh
        - mtr
        - nethogs
        - nmap
        - num-utils
        - oathtool
        - parted-doc
        - psmisc
        - pv
        - rsync
        - screen
        - strace
        - time
        - tmux
        - units
        - vim
        - w3m
        - whois
        - yaml-mode
        - zip
        - yaml-mode
        - zip
        - zoxide

    - name: configure dict
      copy:
        content: |
          server localhost
        dest: /etc/dictd/dict.conf

    - lineinfile:
        path: /etc/gdm3/daemon.conf
        regexp: WaylandEnable=
        line: "# WaylandEnable=false"

    - lineinfile:
        path: /etc/default/grub
        regexp: GRUB_ENABLE_CRYPTODISK
        line: "GRUB_ENABLE_CRYPTODISK=n"

    - lineinfile:
        path: /etc/environment
        regexp: MOZ_ENABLE_WAYLAND
        line: "MOZ_ENABLE_WAYLAND=1"

    - shell: |
        flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo

    - shell: |
        env DEBIAN_FRONTEND=noninteractive dpkg-reconfigure libdvd-pkg

    - name: "create liw/.radicle/keys"
      file:
        state: directory
        path: /home/liw/.radicle/keys
        owner: liw
        group: liw
        mode: 0755

    - name: "install radicle private key"
      copy:
        content: "{{ radicle_key }}"
        dest: /home/liw/.radicle/keys/radicle
        owner: liw
        group: liw
        mode: 0600

    - name: "install radicle public key"
      copy:
        content: "{{ radicle_pub }}"
        dest: /home/liw/.radicle/keys/radicle.pub
        owner: liw
        group: liw
        mode: 0644

  vars:
    ansible_python_interpreter: /usr/bin/python3

    sane_debian_system_version: 2
    sane_debian_system_hostname: "{{ inventory_hostname }}"
    sane_debian_system_codename: bookworm
    sane_debian_system_timezone: Europe/Helsinki
    sane_debian_system_sources_lists:
      - repo: |
          deb http://deb.debian.org/debian bookworm contrib non-free non-free-firmware

      - repo: |
          deb-src http://deb.debian.org/debian bookworm main contrib non-free non-free-firmware

      - repo: |
          deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware

      - repo: |
          deb http://deb.debian.org/debian bookworm-backports main contrib non-free non-free-firmware

      - repo: deb http://apt.liw.fi/debian unstable main
        signing_key: "{{ apt_liw_fi_signing_key }}"

    unix_users_version: 2
    unix_users:
      - username: liw
        comment: Lars Wirzenius
        sudo: yes
        groups:
          - audio
          - bluetooth
          - cdrom
          - dialout
          - dip
          - floppy
          - libvirt
          - kvm
          - netdev
          - plugdev
          - scanner
          - video

    mailname: "exolobe1.liw.fi"
    relayhost: pieni.net:587
    smarthost: pieni.net
    smarthost_user: pienirelay
    smarthost_password: "{{ lookup('pipe', 'pass show pieni.net/pienirelay') }}"

    sshd_version: 1

    rustup_cargo_install: |
      cargo-cache \
      pikchr-cli \
      bottom

    radicle_key: "{{ lookup('pipe', 'pass radicle/liw/key') }}"
    radicle_pub: "{{ lookup('pipe', 'pass radicle/liw/key.pub') }}"