mirror of
https://github.com/inofix/common-playbooks.git
synced 2026-02-05 12:45:29 +01:00
25 lines
740 B
YAML
25 lines
740 B
YAML
#* This playbook downloads and deploys valid liferay plugins to the liferay
|
|
#* installations deploy directory.
|
|
#* Note: this playbook should be used either from the main install playbook
|
|
#* (which resolves its dependencies) or as a shorthand for an already set up
|
|
#* system, where the dependencies are already provided.
|
|
#* Use '-a' to pass parameters to ansible (as '-e'). See ansible fetch for
|
|
#* details.
|
|
#* No arguments are mandatory.
|
|
|
|
- hosts: app.liferay
|
|
become: True
|
|
|
|
roles:
|
|
- install-liferay-plugins
|
|
|
|
# not enabling this yet, as it only tracks 'today'
|
|
# it is only useful for human communication and needs
|
|
# to be combined with something smarter as
|
|
# dpkg --get-selections
|
|
#- hosts: all
|
|
|
|
# roles:
|
|
# - track-packages
|
|
|