Sha256: 5f1097724acb825a53613b2273f546748d07194a8f27ba23c95fad3bdbfb4a96

Contents?: true

Size: 648 Bytes

Versions: 3

Compression:

Stored size: 648 Bytes

Contents

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

- 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.8.2 roles/backend_install_essentials/tasks/main.yml
taperole-1.8.1 roles/backend_install_essentials/tasks/main.yml
taperole-1.8.0 roles/backend_install_essentials/tasks/main.yml