mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 08:30:46 +02:00
11 lines
265 B
YAML
11 lines
265 B
YAML
---
|
|
- name: Install fakeroot
|
|
community.general.pacman:
|
|
name: fakeroot
|
|
state: present
|
|
when: run_once_dev_fakeroot is not defined
|
|
|
|
- name: run the fakeroot tasks once
|
|
set_fact:
|
|
run_once_dev_fakeroot: true
|
|
when: run_once_dev_fakeroot is not defined |