mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-15 16:40:45 +02:00
9 lines
236 B
YAML
9 lines
236 B
YAML
- block:
|
|
- name: Install sudo (Arch/Manjaro)
|
|
community.general.pacman:
|
|
name: sudo
|
|
state: present
|
|
- name: run the sudo tasks once
|
|
set_fact:
|
|
run_once_sys_sudo: true
|
|
when: run_once_sys_sudo is not defined |