machine_setup/ansible/roles/blank/tasks/linux.yaml

30 lines
591 B
YAML
Raw Normal View History

2022-12-02 05:22:49 +00:00
# - name: Build aur packages
# register: buildaur
# become_user: "{{ build_user.name }}"
# command: "aurutils-sync --no-view {{ item }}"
# args:
# creates: "/var/cache/pacman/custom/{{ item }}-*.pkg.tar.*"
# loop:
# - foo
# - name: Update cache
# when: buildaur.changed
# pacman:
2022-12-02 05:22:49 +00:00
# name: []
# state: present
# update_cache: true
2023-11-16 18:20:18 +00:00
2022-12-02 05:22:49 +00:00
# - name: Install packages
# package:
# name:
# - foo
# state: present
2023-02-18 17:19:58 +00:00
# - name: Enable services
# systemd:
# enabled: yes
# name: "{{ item }}"
# daemon_reload: yes
# loop:
# - foo.service