Sha256: 7b3db982fb924d5dc8dca1dbbae8d417dfac7c5bc5a68d39a4c938131db61e9f

Contents?: true

Size: 620 Bytes

Versions: 7

Compression:

Stored size: 620 Bytes

Contents

- name: Check out application
  remote_user: "{{ deployer_user.name }}"
  git: dest={{ be_app_path }}
       repo={{ be_app_repo }}
       version={{ be_app_branch }}
       accept_hostkey=true
  register: app_checkout
  tags: [be_deploy]

- name: check that secrets is ignored
  shell: cat {{ be_app_path }}/.gitignore | grep {{ item }}
  with_items:
    - config/secrets.yml
  register: secrets_ignore_check
  ignore_errors: true
  tags: [be_deploy]

- name: ignore secrets
  shell: /bin/bash -c 'echo "config/secrets.yml" > {{ be_app_path }}/.git/info/exclude'
  when: secrets_ignore_check|failed
  tags: [be_deploy]

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
taperole-1.1.4 roles/backend_checkout/tasks/main.yml
taperole-1.1.3 roles/backend_checkout/tasks/main.yml
taperole-1.1.2 roles/backend_checkout/tasks/main.yml
taperole-1.1.1 roles/backend_checkout/tasks/main.yml
taperole-1.1.0 roles/backend_checkout/tasks/main.yml
taperole-1.0.1 roles/backend_checkout/tasks/main.yml
taperole-1.0.0 roles/backend_checkout/tasks/main.yml