Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

47 linhas
866B

  1. ---
  2. # shamelessly copied from https://github.com/fabianfreyer/ansible-openproject
  3. - include: user.yml
  4. - include: rbenv.yml
  5. vars:
  6. ruby_version: 2.4.2
  7. rbenv_directory: "{{openproject_path}}/.rbenv"
  8. rbenv_user: '{{openproject_user}}'
  9. rbenv_group: '{{openproject_group}}'
  10. tags: ruby
  11. - include: nodenv.yml
  12. vars:
  13. node_version: 6.11.5
  14. nodenv_directory: "{{openproject_path}}/.nodenv"
  15. nodenv_user: '{{openproject_user}}'
  16. nodenv_group: '{{openproject_group}}'
  17. tags: node
  18. - debug:
  19. msg: RAILS_ENV=production PATH={{openproject_env_path}}:$PATH
  20. - include: install.yml
  21. - include: database.yml
  22. tags: mysql
  23. - include: memcached.yml
  24. - include: customize.yml
  25. - include: configure.yml
  26. - include: unicorn.yml
  27. - include: nginx.yml
  28. tags: nginx
  29. #- include: cron.yml
  30. # tags: cron
  31. - name: flush handlers
  32. meta: flush_handlers