chainetv/tasks/main.yml

13 lines
878 B
YAML
Raw Normal View History

2019-04-25 19:59:52 +00:00
---
# tasks file for chainetv
- name: ensure that gunicorn is install
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
upgrade: false # not required. Whether or not to upgrade whole system.
force: false # not required. When removing package - force remove package, without any checks. When update_cache - force redownload repo databases.
name: gunicorn # not required. Name or list of names of the packages to install, upgrade, or remove.
update_cache: false # not required. Whether or not to refresh the master package lists. This can be run as part of a package installation or as a separate step.
recurse: false # not required. When removing a package, also remove its dependencies, provided that they are not required by other packages and were not explicitly installed by a user.
become: yes