Update folder structure

This commit is contained in:
Keannu Bernasol 2024-10-25 22:35:10 +08:00
parent ddf67b68a7
commit 2250c1c093
8 changed files with 12 additions and 11 deletions

View file

@ -3,7 +3,10 @@
"yaml.schemas": {
"https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/ansible.json#/$defs/playbook": [
"file:///e%3A/Projects/AnsibleTest/setup.yml",
"file:///e%3A/Projects/AnsibleTest/update.yml"
]
"file:///e%3A/Projects/AnsibleTest/update.yml",
"file:///e%3A/Projects/ansible-playbooks/roles/tasks/update.yml",
"file:///e%3A/Projects/ansible-playbooks/roles/tasks/setup.yml"
],
"https://raw.githubusercontent.com/ansible/ansible-lint/main/src/ansiblelint/schemas/requirements.json": "file:///e%3A/Projects/ansible-playbooks/requirements.yml"
}
}

View file

@ -1,3 +1,3 @@
[defaults]
inventory = inventory
inventory = inventory/hosts
private_key_file = ~/.ssh/id_rsa

View file

@ -0,0 +1 @@
# Debian-specific variables go here

View file

@ -0,0 +1 @@
# OpenWRT-specific variables go here

View file

@ -0,0 +1 @@
# ARMv7 OpenWRT-specific variables for LeRouter-1 go here

View file

@ -1,23 +1,21 @@
---
- hosts:
- debian
- ubuntu
# Runs on root user already
become: false
tasks:
- name: Add SSH key to authorized_hosts - Debian/Ubuntu
- name: Add SSH key to authorized_hosts - Debian
authorized_key:
user: root
state: present
key: "{{ lookup('file', '~/.ssh/id_rsa.pub') }}"
path: /root/.ssh/authorized_keys
when: ansible_distribution in ["Debian", "Ubuntu"]
- name: Update all packages
apt:
update_cache: true
autoremove: true
state: latest
- name: Install packages - Debian/Ubuntu
- name: Install packages - Debian
apt:
name:
- vim
@ -38,6 +36,5 @@
update_cache: false
autoremove: true
state: latest
when: ansible_distribution in ["Debian", "Ubuntu"]
- name: Install ACME
command: curl https://get.acme.sh | sh -s email=noehbernasol0@gmail.com

View file

@ -1,7 +1,6 @@
---
- hosts:
- debian
- ubuntu
# Runs on root user already
become: false
tasks:
@ -10,7 +9,6 @@
update_cache: true
autoremove: true
state: latest
when: ansible_distribution in ["Debian", "Ubuntu"]
when: ansible_distribution in ["Debian"]
- name: Update ACME
command: /root/.acme.sh/acme.sh --upgrade --auto-upgrade
when: ansible_distribution in ["Debian", "Ubuntu"]