Delete unused files

This commit is contained in:
Stefan Hoffmann 2023-04-16 17:34:26 +02:00
parent e67c7e7613
commit 3d33073711
Signed by: stefan
GPG Key ID: 8EFC7042BF8D5CDD
3 changed files with 0 additions and 65 deletions

View File

@ -1,17 +0,0 @@
ansible_host: 5.9.220.115
ansible_port: 22
ansible_ssh_user: root
ansible_python_interpreter: /usr/bin/python3
network:
ff_v4_address: 10.188.32.5
ff_v6_address: 2a03:2260:121:5000::5
dhcp:
ff_subnet: 10.188.32.0
ff_netmask: 255.255.224.0
range_start: 10.188.40.0
range_end: 10.188.47.255
mtu: 1312
tunneldigger:
td_port: 53842
td_wan_interface: ens18

View File

@ -1,37 +0,0 @@
---
- name: Install Packages for Unifi APT
ansible.builtin.apt:
name:
- ca-certificates
- apt-transport-https
state: latest
update_cache: yes
- name: Add MongoDB GPG Key
ansible.builtin.get_url:
url: https://www.mongodb.org/static/pgp/server-3.0.asc
dest: /etc/apt/keyrings/mongodb-3.0.asc
- name: Add Unifi GPG Key
ansible.builtin.get_url:
url: https://dl.ui.com/unifi/unifi-repo.gpg
dest: /etc/apt/trusted.gpg.d/unifi-repo.gpg
- name: Add MongoDB repository into sources list using specified filename
ansible.builtin.apt_repository:
repo: "deb [trusted=yes] http://repo.mongodb.org/apt/ubuntu precise/mongodb-org/3.0 multiverse"
state: present
filename: mongodb
- name: Add Unifi repository into sources list using specified filename
ansible.builtin.apt_repository:
repo: deb https://www.ui.com/downloads/unifi/debian stable ubiquiti
state: present
filename: unifi
- name: Install Unifi via APT
ansible.builtin.apt:
name:
- unifi
state: latest
update_cache: yes

View File

@ -1,11 +0,0 @@
# ansible-playbook -i hosts.yml system-setup-unifi.yml
- name: System preperation
hosts: service_server
roles:
#- 00-ubuntu-basic
- 21-install-oitc
- name: Unifi Setup
hosts: unifi
roles:
- 21-unifi