From 4417db6e939e6772ac97c82becd6cd3f784d0d5f Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Tue, 11 Jan 2022 10:20:54 -0800 Subject: [PATCH] [meta] update pixelfed to v0.11.2 --- meta/playbooks/pixelfed/install.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/meta/playbooks/pixelfed/install.yml b/meta/playbooks/pixelfed/install.yml index 81b1a62..1da88a6 100644 --- a/meta/playbooks/pixelfed/install.yml +++ b/meta/playbooks/pixelfed/install.yml @@ -39,17 +39,17 @@ become_user: postgres - lineinfile: - path: /etc/php/7.3/fpm/php.ini + path: /etc/php/7.4/fpm/php.ini regexp: "^upload_max_filesize = " line: "upload_max_filesize = 6M" notify: Restart php-fpm - copy: - src: /etc/php/7.3/fpm/pool.d/www.conf - dest: /etc/php/7.3/fpm/pool.d/pixelfed.conf + src: /etc/php/7.4/fpm/pool.d/www.conf + dest: /etc/php/7.4/fpm/pool.d/pixelfed.conf remote_src: yes - lineinfile: - path: /etc/php/7.3/fpm/pool.d/pixelfed.conf + path: /etc/php/7.4/fpm/pool.d/pixelfed.conf regexp: "{{ item.regexp }}" line: "{{ item.line }}" loop: @@ -74,8 +74,8 @@ # https://docs.pixelfed.org/running-pixelfed/installation.html#setting-up-pixelfed-files - git: repo: "https://github.com/pixelfed/pixelfed.git" + version: v0.11.2 dest: /usr/share/pixelfed - version: dev - file: path: /usr/share/pixelfed @@ -87,7 +87,7 @@ - name: Restart php-fpm service: - name: php7.3-fpm + name: php7.4-fpm state: restarted - hosts: pixelfed