mirror of
https://github.com/lemeow125/ansible-playbooks.git
synced 2024-11-16 19:59:26 +08:00
Update folder structure
This commit is contained in:
parent
ddf67b68a7
commit
2250c1c093
8 changed files with 12 additions and 11 deletions
7
.vscode/settings.json
vendored
7
.vscode/settings.json
vendored
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[defaults]
|
||||
inventory = inventory
|
||||
inventory = inventory/hosts
|
||||
private_key_file = ~/.ssh/id_rsa
|
1
inventory/group_vars/debian.yml
Normal file
1
inventory/group_vars/debian.yml
Normal file
|
@ -0,0 +1 @@
|
|||
# Debian-specific variables go here
|
1
inventory/group_vars/openwrt.yml
Normal file
1
inventory/group_vars/openwrt.yml
Normal file
|
@ -0,0 +1 @@
|
|||
# OpenWRT-specific variables go here
|
1
inventory/host_vars/10.0.10.1.yml
Normal file
1
inventory/host_vars/10.0.10.1.yml
Normal file
|
@ -0,0 +1 @@
|
|||
# ARMv7 OpenWRT-specific variables for LeRouter-1 go here
|
|
@ -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
|
|
@ -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"]
|
Loading…
Reference in a new issue