25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
514B

  1. ---
  2. - name: install packages
  3. apt:
  4. pkg: "{{item}}"
  5. with_items:
  6. - ca-certificates
  7. - apt-transport-https
  8. - name: atom apt repository key
  9. apt_key:
  10. url: https://packagecloud.io/AtomEditor/atom/gpgkey
  11. id: 0A0FAB860D48560332EFB581B75442BBDE9E3B09
  12. state: present
  13. - name: atom apt repository
  14. apt_repository:
  15. repo: deb [arch=amd64] https://packagecloud.io/AtomEditor/atom/any/ any main
  16. state: present
  17. filename: atom
  18. - name: install atom
  19. apt:
  20. pkg: atom
  21. state: latest