Sha256: ca49b0765fe086dd1924ed9f85d01a45fabacba6660b26d456f24ad97073a43c

Contents?: true

Size: 794 Bytes

Versions: 3

Compression:

Stored size: 794 Bytes

Contents

- name: Disable gem install downloading documents
  template: src=gemrc.j2
            dest=/etc/gemrc
            mode=u=rw,g=r,o=r

- name: Install imagemagick
  apt: name={{ item }} state=present
  with_items:
    - imagemagick
    - libmagickcore-dev
    - libmagickwand-dev

- name: Register monit memcached config files
  template: src=memcached.j2
            dest=/etc/monit/conf.d/memcached
            mode=u=rw,g=r,o=r
  register: memcached_monit_config

- name: Reload Monit
  command: bash -lc "monit reload"
  when: memcached_monit_config.changed

# zzet.rbenv puts all the rbenv stuff in profile for some reason
# so we gotta use login shells to do this stuff
- name: Install bundler
  shell: bash -lc "gem install bundler"

- name: Rbenv rehash
  shell: bash -lc "rbenv rehash"

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
taperole-1.7.1 roles/backend_install_essentials/tasks/main.yml
taperole-1.7.0 roles/backend_install_essentials/tasks/main.yml
taperole-1.6.0 roles/backend_install_essentials/tasks/main.yml