2024-12-16 11:04:19 +00:00
|
|
|
---
|
|
|
|
- name: Update repositories and upgrade packages on Ubuntu
|
|
|
|
hosts: all
|
2024-12-16 11:57:46 +00:00
|
|
|
become: true
|
2024-12-16 10:26:40 +00:00
|
|
|
tasks:
|
2024-12-16 11:04:19 +00:00
|
|
|
- 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
|
2024-12-16 13:49:20 +00:00
|
|
|
autoclean: yes
|
|
|
|
|
2024-12-24 11:41:17 +00:00
|
|
|
- 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:"
|
|
|
|
disable_web_page_preview: true
|
|
|
|
disable_notification: true
|