main.yml 375 B

12345678910111213141516
  1. ---
  2. - name: install libzmq
  3. zypper: name=zeromq-devel state=latest
  4. - name: fetch ufo sources
  5. git: repo=https://github.com/ufo-kit/{{ item }}.git
  6. dest=/opt/{{ item }}
  7. notify:
  8. - configure ufo-core
  9. with_items:
  10. - ufo-core
  11. - ufo-filters
  12. - name: fetch lamino sources
  13. git: repo=http://ufo.kit.edu/git/lamino-filters.git
  14. dest=/opt/lamino-filters