You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
651 B

  1. ---
  2. - name: Install cmark-gfm
  3. apt:
  4. name:
  5. - cmark-gfm
  6. - libcmark-gfm-dev
  7. - libcmark-gfm-extensions-dev
  8. - name: Symlink cmark-gfm library to stable location
  9. file:
  10. path: /usr/local/lib/libcmark-gfm.so
  11. src: /usr/lib/{{ ansible_facts['architecture'] }}-linux-gnu/libcmark-gfm.so
  12. state: link
  13. owner: root
  14. group: root
  15. mode: 0644
  16. - name: Symlink cmark-gfm-extensions library to stable location
  17. file:
  18. path: /usr/local/lib/libcmark-gfm-extensions.so
  19. src: /usr/lib/{{ ansible_facts['architecture'] }}-linux-gnu/libcmark-gfm-extensions.so
  20. state: link
  21. owner: root
  22. group: root
  23. mode: 0644