Setup accelerate mode beforehand.

This commit is contained in:
Ralph Bean 2013-09-26 15:28:45 +00:00
parent 1a7046f645
commit ca358cf22b
2 changed files with 8 additions and 1 deletions

View file

@ -7,7 +7,6 @@
hosts: nuancier;nuancier-stg
user: root
gather_facts: False
accelerate: True
vars_files:
- /srv/web/infra/ansible/vars/global.yml
@ -16,6 +15,7 @@
tasks:
- include: $tasks/virt_instance_create.yml
- include: $tasks/accelerate_prep.yml
handlers:
- include: $handlers/restart_services.yml

View file

@ -0,0 +1,7 @@
---
- name: install needed packages for accelerated mode
yum: pkg=$item state=installed
with_items:
- python-keyczar
tags:
- packages