Skip to content
Snippets Groups Projects
Commit 3ae83d77 authored by void's avatar void
Browse files

verzeichnisse restrukturiert

parent 237d5dce
No related branches found
No related tags found
No related merge requests found
Showing
with 18 additions and 6 deletions
File moved
......@@ -25,7 +25,7 @@
- name: add sshkeys for server
authorized_key:
user: root
key: "{{ lookup('file', 'keyfiles/' + item + '.pub') }}"
key: "{{ lookup('file', '../keyfiles/' + item + '.pub') }}"
with_items: "{{ administratorenteam }}"
when: administratorenteam
notify: restart sshd
......
File moved
File moved
---
# Playbook zur Konfiguration von allen Servern
# Globale Konfiguration für alle Server
- hosts: all
remote_user: root
......
---
# Hauptdatei, includiert lediglich die einzelnen Playbooks
- include: all.yml
- include: vorstandspi.yml
- include: webserver.yml
- include: all/main.yml
- include: vorstandspi/main.yml
- include: webserver/main.yml
\ No newline at end of file
......@@ -3,7 +3,7 @@
- hosts: vorstandspi
remote_user: root
roles:
- { role: vorstandspi_git, tags: git }
- { role: vorstandspi_mysql, tags: mysql }
- { role: git, tags: git }
- { role: mysql, tags: mysql }
File moved
......@@ -6,4 +6,4 @@
- { role: nginx, tags: nginx }
- { role: docker, tags: docker }
- { role: docker_gitlab, tags: gitlab }
\ No newline at end of file
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment