Test2/update-upgrade.yml
Alex Devera 1bdad58eb7 upd
2025-02-25 10:04:38 +03:00

27 lines
No EOL
728 B
YAML

---
- name: Update repositories and upgrade packages on Ubuntu
hosts: all
become: yes
tasks:
- name: Update apt cache
apt:
update_cache: yes
- name: Upgrade all packages to the latest version
apt:
upgrade: dist
- name: Remove unnecessary packages
apt:
autoremove: yes
autoclean: yes
- name: Send notify to Telegram
community.general.telegram:
token: '5909855740:AAGLftkWmQl0XTLHLo1PcI87HHXoU7eEAGM'
api_args:
chat_id: 222227130
parse_mode: "markdown"
text: "Your precious application has been deployed: https://example.com"
disable_web_page_preview: true
disable_notification: true