acquia/moonshot

View on GitHub
sample/bin/aws-codedeploy-samples/conf-mgmt/puppet/aws-codedeploy/manifests/service.pp

Summary

Maintainability
Test Coverage
# == Class codedeploy::service
#
# This class is meant to be called from codedeploy
# It ensure the service is running
#
class codedeploy::service {

  service { 'codedeploy-agent':
    ensure => running,
    enable => true,
  }
}