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.

17 lines
450 B

  1. ---
  2. - name: Solve problem with libgd3 for php-gd
  3. hosts: [ 'debian10' ]
  4. when: (php_version != '7.4')
  5. vars_files:
  6. - ./../../vars/php.yml
  7. tasks:
  8. - copy:
  9. dest: '/etc/apt/preferences.d/libgd-pin100'
  10. content: |-
  11. Package: libgd3
  12. Pin-Priority: 100
  13. - shell: |-
  14. apt update
  15. apt install -t bullseye libgd3 -yy
  16. apt-cache policy libgd3
  17. apt install php{{ php_version }}-gd -yy