Test2/update-upgrade.yml
Alex Devera 2c8b3bc840 5
2025-02-25 10:32:43 +03:00

23 lines
No EOL
706 B
YAML

- name: Update repositories and upgrade packages on Ubuntu
hosts: all
become: yes
tasks:
- name: Update apt cache
apt:
update_cache: yes
cache_valid_time: 3600 # Обновлять кеш не чаще, чем раз в час
- name: Upgrade all packages to the latest version
apt:
upgrade: dist
- name: Send notify to Telegram
community.general.telegram:
token: '5909855740:AAGLftkWmQl0U7eEAGM'
api_method: "sendMessage"
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