Add new virtual machine host 'unicorn'
Required for running unify controller, which is itself required for configuring our WiFi access points. Precedes: #16
This commit is contained in:
parent
702f670965
commit
b5286cb6cb
4 changed files with 17 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
Currently including the following hosts:
|
||||
* tau.netz39.de
|
||||
* pottwal.n39.eu
|
||||
* unicorn.n39.eu
|
||||
|
||||
## Setup
|
||||
```bash
|
||||
|
|
|
@ -77,3 +77,5 @@ all:
|
|||
3665386538393066380a383366346235343531306561643534663035646537666534383536333230
|
||||
34613761363237633865306332653631323366343232353666343165666664343838
|
||||
|
||||
unicorn.n39.eu:
|
||||
server_admin: "admin+unicorn@netz39.de"
|
||||
|
|
3
main.yml
3
main.yml
|
@ -39,3 +39,6 @@
|
|||
|
||||
- name: Pottwal specific setup
|
||||
import_playbook: pottwal.yml
|
||||
|
||||
- name: Specific setup for host unicorn
|
||||
import_playbook: unicorn.yml
|
||||
|
|
11
unicorn.yml
Normal file
11
unicorn.yml
Normal file
|
@ -0,0 +1,11 @@
|
|||
---
|
||||
- hosts: unicorn.n39.eu
|
||||
become: true
|
||||
|
||||
vars:
|
||||
ansible_python_interpreter: /usr/bin/python3
|
||||
|
||||
roles:
|
||||
- role: docker_setup
|
||||
vars:
|
||||
docker_data_root: "/srv/docker"
|
Loading…
Reference in a new issue