memcached_sessions work?

Clean Trellis installation. Just changed to true the memcached_sessions value on roles/wordpress-setup/defaults/main.yml

The vagrant box build, but nginx doesn’t work (502 bad gateway). FPM configuration check fail:

ERROR: [/etc/php5/fpm/pool.d/wordpress.conf:19] unknown entry 'session.save_handler’
ERROR: Unable to include /etc/php5/fpm/pool.d/wordpress.conf from /etc/php5/fpm/php-fpm.conf at line 19
ERROR: failed to load configuration file '/etc/php5/fpm/php-fpm.conf’
ERROR: FPM initialization failed

I’m doing something wrong or is a bug?

Ok, just found the bug on roles/php/templates/php-fpm.conf.j2.

{% if memcached_sessions %}
session.save_handler = memcached
session.save_path = “tcp://{{ memcached_listen_ip }}:{{ memcached_port }}”
{% endif %}

become

{% if memcached_sessions %}
php_value[session.save_handler] = memcached
php_value[session.save_path] = “tcp://{{ memcached_listen_ip }}:{{ memcached_port }}”
{% endif %}

Thanks @aledan. This was fixed here: https://github.com/roots/trellis/pull/342