We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6c67646 + ea347ab commit 61faa2eCopy full SHA for 61faa2e
ansible/roles/dev-desktop/tasks/main.yml
@@ -12,3 +12,4 @@
12
- include_tasks: github.yml
13
- include_tasks: motd.yml
14
- include_tasks: scripts.yml
15
+- include_tasks: services.yml
ansible/roles/dev-desktop/tasks/services.yml
@@ -0,0 +1,9 @@
1
+---
2
+
3
+- name: Disable the apport service
4
+ ansible.builtin.systemd:
5
+ enabled: false
6
+ state: stopped
7
+ name: apport.service
8
+ # Not all of our hosts actually have this, just ignore it if it fails.
9
+ ignore_errors: true
0 commit comments