Puppet Class: redis::php
- Defined in:
- puppet/modules/redis/manifests/php.pp
Overview
Class: redis::php
This class configures phpredis, a PHP extension that provides an API for communicating with the Redis key-value store.
6 7 8 9 10 11 12 13 14 15 |
# File 'puppet/modules/redis/manifests/php.pp', line 6
class redis::php {
include ::redis
include ::apache
package { ['php7.4-redis', 'php7.4-igbinary']:
ensure => present,
require => Service['redis-server'],
notify => Service['apache2'],
}
}
|