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.

19 lines
513 B

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