您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
305B

  1. ---
  2. - name: flatpak apt package
  3. apt:
  4. pkg: snap
  5. when: telegram_source == 'snap'
  6. - name: telegram-desktop snap package
  7. community.general.snap:
  8. name: telegram-desktop
  9. state: "{{ (telegram_source == 'snap') | ternary('present','absent') }}"
  10. ignore_errors: "{{telegram_source != 'snap'}}"