mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-05 16:44:16 +02:00
11 lines
235 B
YAML
11 lines
235 B
YAML
---
|
|
- name: Install fakeroot
|
|
pacman:
|
|
name: fakeroot
|
|
state: present
|
|
when: run_once_fakeroot is not defined
|
|
|
|
- name: run the fakeroot tasks once
|
|
set_fact:
|
|
run_once_fakeroot: true
|
|
when: run_once_fakeroot is not defined |