summaryrefslogtreecommitdiffstats
path: root/roles/mako/tasks/main.yml
blob: 3303969f94aba75831486d9291598b6ec2d7d4c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
- name: "Ensure mako is installed"
  become: true
  ansible.builtin.package:
    name:
      - "libnotify"
      - "mako"
    state: "present"

- name: "Create system config directory"
  become: true
  ansible.builtin.file:
    path: "/etc/xdg/mako"
    state: "directory"
    mode: "0755"

- name: "Configure system defaults"
  become: true
  ansible.builtin.template:
    src: "mako/config.j2"
    dest: "/etc/xdg/mako/config"
    mode: "0644"