Sha256: 1712b8c0c6700b4214508fbac3e978a2453e0019e65887f79f80d8cdb18cef1e
Contents?: true
Size: 1.25 KB
Versions: 3
Compression:
Stored size: 1.25 KB
Contents
--- - name: Install rails apt dependencies apt: name: "{{item}}" with_items: - git - imagemagick - libffi-dev - libgmp3-dev - libmagickwand-dev - libpq-dev - libxslt-dev - nodejs - zlib1g-dev become: true - name: Create /u/apps/{{project_name}}/shared/config file: path: /u/apps/{{project_name}}/shared/config/ state: directory become: true become_user: "{{deploy_user}}" - name: Create database.yml template: src: database.yml dest: /u/apps/{{project_name}}/shared/config/database.yml become: true become_user: "{{deploy_user}}" - name: Create application.yml (legacy) when: appyml is defined template: src: application.yml dest: /u/apps/{{project_name}}/shared/config/application.yml become: true become_user: "{{deploy_user}}" - debug: msg: "Warning: Using legacy appyml for variable configuration. Consider switching to application.yml.template" verbosity: 0 when: appyml is defined - name: Create application.yml when: appyml is not defined template: src: application.yml.template dest: /u/apps/{{project_name}}/shared/config/application.yml owner: "{{deploy_user}}"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
subspace-0.4.1 | ansible/roles/rails/tasks/main.yml |
subspace-0.4.0 | ansible/roles/rails/tasks/main.yml |
subspace-0.3.0 | ansible/roles/rails/tasks/main.yml |