Skip to content
This repository has been archived by the owner on Dec 19, 2021. It is now read-only.

Commit

Permalink
Remove resque -- we're going to start using sidekiq instead
Browse files Browse the repository at this point in the history
  • Loading branch information
bess committed Oct 3, 2017
1 parent c9dbe09 commit 4ed4ef0
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions roles/sufia_dependencies/install/tasks/redis_resque.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,18 @@
service: name={{ redis }} state=started
become: yes

- name: copy resque init script
template: src=pool_q.j2 dest=/etc/init.d/resque-pool mode=0755
become: yes

- name: start resque
service: name=resque-pool state=started enabled=yes
become: yes
# - name: copy resque init script
# template: src=pool_q.j2 dest=/etc/init.d/resque-pool mode=0755
# become: yes
#
# - name: start resque
# service: name=resque-pool state=started enabled=yes
# become: yes

- name: set CentOS redis and resque-pool to restart on reboot
become: yes
service: name={{ item }} enabled=yes
with_items:
- "{{ redis }}"
- resque-pool
# - resque-pool
when: ansible_distribution == "CentOS"

0 comments on commit 4ed4ef0

Please sign in to comment.