Remove ansible scripts
All checks were successful
Lint / lint (push) Successful in 8s

This commit is contained in:
Gabriel Simmer 2023-07-15 18:40:49 +01:00
parent 84be79f2ba
commit dba86d8a6f
Signed by: arch
GPG key ID: C81B106D46C5B875
4 changed files with 1 additions and 37 deletions

View file

@ -1,9 +1,8 @@
#
name: Lint
on: [push]
jobs:
Explore-Gitea-Actions:
lint:
runs-on: debian-latest
steps:
- name: Checkout code

View file

@ -1,14 +0,0 @@
[homelab]
seattle # K3S control Pi
# kelowna # Secondary Pi in cluster
[nas]
vancouver
[oracle]
minecraft-server ansible_user=ubuntu # Minecraft Server
uptime-kuma ansible_user=ubuntu # Uptime Kuma
[debian:children]
homelab
oracle

View file

@ -1,13 +0,0 @@
---
- hosts: all
tasks:
- name: get current user
command: whoami
register: remote_user
- name: Set authorized key took from file
authorized_key:
user: "{{ remote_user.stdout }}"
state: present
key: https://gabrielsimmer.com/ssh
exclusive: true

View file

@ -1,8 +0,0 @@
- name: Apt updates
hosts: debian
become: true
tasks:
- name: Apt update
ansible.builtin.apt:
update_cache: yes
upgrade: yes