15 lines
293 B
YAML
15 lines
293 B
YAML
|
|
---
|
||
|
|
- name: Install Bunkerweb on localhost
|
||
|
|
hosts: localhost
|
||
|
|
connection: local
|
||
|
|
become: true
|
||
|
|
gather_facts: false
|
||
|
|
environment:
|
||
|
|
LANG: en_US.UTF-8
|
||
|
|
LC_ALL: en_US.UTF-8
|
||
|
|
tasks:
|
||
|
|
- name: Install bunkerweb
|
||
|
|
ansible.builtin.dnf:
|
||
|
|
name: bunkerweb
|
||
|
|
state: present
|