mirror of
https://github.com/lemeow125/ansible-playbooks.git
synced 2024-11-17 04:09:26 +08:00
13 lines
285 B
YAML
13 lines
285 B
YAML
---
|
|
- hosts:
|
|
- debian
|
|
# Runs on root user already
|
|
become: false
|
|
tasks:
|
|
- name: Update all packages
|
|
apt:
|
|
update_cache: true
|
|
autoremove: true
|
|
state: latest
|
|
- name: Update ACME
|
|
command: /root/.acme.sh/acme.sh --upgrade --auto-upgrade
|