Skip to content

Instantly share code, notes, and snippets.

@adamgoucher
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamgoucher/10b7d0ac592a07545170 to your computer and use it in GitHub Desktop.
Save adamgoucher/10b7d0ac592a07545170 to your computer and use it in GitHub Desktop.
class role::sms_gateway_development {
include profile::laravel3
class {'profile::sms_gateway':
application_environment => 'development'
}
}
class role::sms_gateway_testing {
include profile::laravel3
class {'profile::sms_gateway':
application_environment => 'testing'
}
}
class role::sms_gateway_staging {
include profile::laravel3
class {'profile::sms_gateway':
application_environment => 'staging'
}
}
class role::sms_gateway_production {
include profile::laravel3
class {'profile::sms_gateway':
application_environment => 'production'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment