add playbook 'urubian'

This commit is contained in:
Václav Uruba 2022-12-06 16:47:24 +01:00
commit a3e29bfa81
Signed by: uruba
GPG Key ID: 9D8E987C4B2E1E9C
3 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/usr/bin/env ansible-playbook
- hosts: all
become: true
roles:
- role: htop
- role: mumble
tags:
- mumble

View File

@ -0,0 +1,5 @@
---
- name: Install htop
package:
name: htop
state: present

View File

@ -0,0 +1,11 @@
---
- name: Install Mumble server
package:
name: mumble-server
state: present
- name: Run (and enable) Mumble server
service:
name: mumble-server
state: started
enabled: yes