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.

8 年之前
7 年之前
8 年之前
7 年之前
1234567891011121314151617181920212223
  1. ---
  2. - name: delete depecrated packages
  3. apt:
  4. pkg: "{{ item }}"
  5. state: absent
  6. with_items:
  7. - slim
  8. - name: install packages
  9. apt:
  10. pkg: "{{ item }}"
  11. state: installed
  12. with_items:
  13. - xserver-xorg
  14. - xserver-xorg-video-all
  15. - xserver-xorg-input-all
  16. - x11-xserver-utils
  17. - service:
  18. name: slim
  19. state: stopped
  20. enabled: no