File tree Expand file tree Collapse file tree 3 files changed +16
-1
lines changed
ansible/roles/dev-desktop/tasks Expand file tree Collapse file tree 3 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 16
16
- clang
17
17
- cmake
18
18
- gcc-mingw-w64-x86-64 # Allows running `x check --target x86_64-pc-windows-gnu`
19
- - earlyoom # Earlyoom kills processes using too much memory before they can cause trouble.
20
19
- jq
21
20
- libssl-dev
22
21
- llvm
Original file line number Diff line number Diff line change 1
1
---
2
2
3
+ - include_tasks : oom.yml
3
4
- include_tasks : dependencies.yml
4
5
- include_tasks : podman.yml
5
6
- include_tasks : quota.yml
Original file line number Diff line number Diff line change
1
+ ---
2
+ # earlyoom kills processes using too much memory before they can cause trouble.
3
+ - name : Install earlyoom
4
+ ansible.builtin.apt :
5
+ name : earlyoom
6
+ state : present
7
+
8
+ # The staging instance is so small that earlyoom prevents Ansible from executing
9
+ # the playbook successfully.
10
+ - name : Disable earlyoom on staging
11
+ ansible.builtin.service :
12
+ name : earlyoom
13
+ enabled : no
14
+ state : stopped
15
+ when : ansible_hostname == "dev-desktop-staging"
You can’t perform that action at this time.
0 commit comments