Skip to content

Commit

Permalink
Merge branch 'amazon'
Browse files Browse the repository at this point in the history
  • Loading branch information
saz committed Feb 10, 2014
2 parents 6320354 + 3b4410c commit 2b4c7bb
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,20 @@
$user = 'memcached'
}
default: {
fail("Unsupported platform: ${::osfamily}")
case $::operatingsystem {
'Amazon': {
$package_name = 'memcached'
$service_name = 'memcached'
$service_hasstatus = true
$dev_package_name = 'libmemcached-devel'
$config_file = '/etc/sysconfig/memcached'
$config_tmpl = "${module_name}/memcached_sysconfig.erb"
$user = 'memcached'
}
default: {
fail("Unsupported platform: ${::osfamily}/${::operatingsystem}")
}
}
}
}
}

0 comments on commit 2b4c7bb

Please sign in to comment.