Test2/update-upgrade.yml

22 lines
728 B
YAML
Raw Normal View History

2024-12-16 11:04:19 +00:00
- name: Update repositories and upgrade packages on Ubuntu
hosts: all
2025-02-25 07:04:38 +00:00
become: yes
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
2025-02-25 07:19:03 +00:00
cache_valid_time: 3600 # Обновлять кеш не чаще, чем раз в час
2024-12-16 11:04:19 +00:00
- name: Upgrade all packages to the latest version
apt:
2025-02-25 07:24:25 +00:00
upgrade: dist
2025-02-25 07:29:33 +00:00
2024-12-24 11:41:17 +00:00
- name: Send notify to Telegram
2024-12-24 11:50:05 +00:00
community.general.telegram:
token: '5909855740:AAGLftkWmQl0XTLHLo1PcI87HHXoU7eEAGM'
2025-02-25 07:19:03 +00:00
data:
2024-12-24 11:50:05 +00:00
chat_id: 222227130
2025-02-25 07:19:03 +00:00
parse_mode: "Markdown"
2024-12-24 11:50:05 +00:00
text: "Your precious application has been deployed: https://example.com"
disable_web_page_preview: true
disable_notification: true