Advertisement
Guest User

Untitled

a guest
Mar 17th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. - name: Drop schemas
  2. mysql_db: state=import name=mysql target={{ role_path }}/files/schemas/drop-imdb-perf.sql login_user={{ MYSQL_ROOT_USER }} login_password={{ MYSQL_ROOT_PWD }} login_host={{ inventory_hostname }}
  3.  
  4. - name: Drop mySQL data
  5. gather_facts: no
  6. hosts: imdb
  7. connection: local
  8. tags:
  9. - mysql-data-drop
  10. tasks:
  11. - include: ../roles/mysql/tasks/drop-perf.yml
  12.  
  13. TASK: [Drop schemas] **************************************************
  14. fatal: [imdb] => One or more undefined variables: 'role_path' is undefined
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement