Skip to content

Instantly share code, notes, and snippets.

@andlju
Created July 4, 2013 19:28
Show Gist options
  • Save andlju/5929786 to your computer and use it in GitHub Desktop.
Save andlju/5929786 to your computer and use it in GitHub Desktop.
Set up Redis with Puppet
package { 'redis-server':
ensure => present
}
service { 'redis-server' :
enable => true,
ensure => running,
require => Package['redis-server']
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment