mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 16:40:45 +02:00
11 lines
247 B
YAML
11 lines
247 B
YAML
---
|
|
- name: Install fakeroot
|
|
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 |