mirror of
https://github.com/lemeow125/ansible-playbooks.git
synced 2025-04-04 17:11:36 +08:00
Compare commits
4 commits
d7c89fc225
...
9cdf61ff0b
Author | SHA1 | Date | |
---|---|---|---|
9cdf61ff0b | |||
e304e5af8b | |||
0021833b44 | |||
19d3e3d02c |
4 changed files with 10 additions and 17 deletions
|
@ -1 +0,0 @@
|
|||
# OpenWRT-specific variables go here
|
|
@ -3,12 +3,5 @@
|
|||
# 172.22.90.75 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
# Bare Metal Nodes
|
||||
10.0.10.169 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
# 10.0.10.4 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
# 10.0.10.141 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
# 10.0.10.64 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
|
||||
[openwrt]
|
||||
# Not enough storage space for these devices to support Ansible
|
||||
# 10.0.10.1
|
||||
# 10.0.10.2
|
||||
# 10.0.10.3
|
||||
10.0.10.4 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
10.0.10.141 ansible_ssh_common_args="-o StrictHostKeyChecking=no"
|
||||
|
|
|
@ -62,6 +62,11 @@
|
|||
state: latest
|
||||
- name: Install ACME
|
||||
shell: curl https://get.acme.sh | sh -s email="{{ ACME_EMAIL }}"
|
||||
- name: Ensure ACME directory exists
|
||||
file:
|
||||
path: ~/.acme.sh/.ssh/
|
||||
state: directory
|
||||
mode: "0700"
|
||||
- name: Enable Syncthing Service
|
||||
command: systemctl enable syncthing@root.service
|
||||
- name: Start Syncthing Service
|
||||
|
|
|
@ -6,21 +6,17 @@
|
|||
tasks:
|
||||
- name: Update Docker
|
||||
apt:
|
||||
name:
|
||||
- docker
|
||||
name: docker
|
||||
update_cache: true
|
||||
autoremove: true
|
||||
state: latest
|
||||
notify: Restart Docker Containers
|
||||
- name: Update all packages
|
||||
apt:
|
||||
name: "*"
|
||||
update_cache: false
|
||||
autoremove: true
|
||||
state: latest
|
||||
- name: Update ACME
|
||||
command: /root/.acme.sh/acme.sh --upgrade --auto-upgrade
|
||||
|
||||
handlers:
|
||||
# Restart Docker Containers on Docker Update
|
||||
- name: Restart Docker Containers
|
||||
- name: Restart All Services
|
||||
command: bash "/root/scripts/start_services.sh"
|
||||
|
|
Loading…
Add table
Reference in a new issue