mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-16 22:41:30 +01:00
16 lines
302 B
Puppet
16 lines
302 B
Puppet
node default {
|
|
|
|
package { 'epel-release':
|
|
ensure => present,
|
|
source => 'http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm',
|
|
provider => rpm,
|
|
}
|
|
|
|
class { 'redis':
|
|
conf_port => '6379',
|
|
conf_bind => '0.0.0.0',
|
|
system_sysctl => true,
|
|
}
|
|
|
|
}
|