add playbook 'urubian'
This commit is contained in:
commit
a3e29bfa81
11
playbook-server-urubian.yml
Normal file
11
playbook-server-urubian.yml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
#!/usr/bin/env ansible-playbook
|
||||||
|
|
||||||
|
- hosts: all
|
||||||
|
become: true
|
||||||
|
|
||||||
|
roles:
|
||||||
|
- role: htop
|
||||||
|
|
||||||
|
- role: mumble
|
||||||
|
tags:
|
||||||
|
- mumble
|
||||||
5
roles/htop/tasks/main.yml
Normal file
5
roles/htop/tasks/main.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
- name: Install htop
|
||||||
|
package:
|
||||||
|
name: htop
|
||||||
|
state: present
|
||||||
11
roles/mumble/tasks/main.yml
Normal file
11
roles/mumble/tasks/main.yml
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user