Skip to content

Commit

Permalink
Merge pull request #618 from clubby789/apport-disable
Browse files Browse the repository at this point in the history
dev-desktops: disable `apport` service
  • Loading branch information
jdno authored Oct 21, 2024
2 parents 6c67646 + ea347ab commit 61faa2e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions ansible/roles/dev-desktop/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@
- include_tasks: github.yml
- include_tasks: motd.yml
- include_tasks: scripts.yml
- include_tasks: services.yml
9 changes: 9 additions & 0 deletions ansible/roles/dev-desktop/tasks/services.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---

- name: Disable the apport service
ansible.builtin.systemd:
enabled: false
state: stopped
name: apport.service
# Not all of our hosts actually have this, just ignore it if it fails.
ignore_errors: true

0 comments on commit 61faa2e

Please sign in to comment.