Ansible role to set up "motivation-bot" telegram bot
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--- |
|
|
|
- name: Install python packages |
|
become: true |
|
apt: name="{{packages}}" state=present |
|
vars: |
|
packages: |
|
- python3-python-telegram-bot # apt packge for pip package 'python-telegram-bot' |
|
tags: |
|
- install |
|
- python
|
|
|