Sha256: f6b24859344525412aaeba65106b3d4ffd09b821090292fb330ddd15fbf66f22
Contents?: true
Size: 656 Bytes
Versions: 36
Compression:
Stored size: 656 Bytes
Contents
- name: Ensure unicorn is stopped remote_user: "{{ deployer_user.name }}" command: bash -lc "sudo monit restart unicorn" when: kill_unicorn tags: [unicorn_stop] - name: Force stop unicorn remote_user: "{{ deployer_user.name }}" command: bash -lc "service unicorn_{{ app_name }} stop" when: kill_unicorn tags: [unicorn_force_stop] - name: Ensure tmp dir present for unicorn pids file: state=directory path={{be_app_path}}/tmp/unicorn owner={{ deployer_user.name }} tags: [be_deploy] - name: Restart Unicorn remote_user: "{{ deployer_user.name }}" command: bash -lc "sudo monit restart unicorn" tags: [unicorn_restart,be_deploy]
Version data entries
36 entries across 36 versions & 1 rubygems