This commit is contained in:
Sam Bashton 2015-01-30 11:01:07 +00:00
Родитель 8dbe26faec
Коммит 96e55502e9
2 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -10,6 +10,12 @@ class consul_template::params {
$package_ensure = 'latest'
$version = '0.6.0'
case $::architecture {
'x86_64', 'amd64': { $arch = 'amd64' }
'i386': { $arch = '386' }
default: { fail("Unsupported kernel architecture: ${::architecture}") }
}
$os = downcase($::kernel)
$init_style = $::operatingsystem ? {

Просмотреть файл

@ -8,7 +8,8 @@ describe 'consul_template' do
let(:facts) {{
:osfamily => osfamily,
:concat_basedir => '/foo',
:path => '/bin:/sbin:/usr/bin:/usr/sbin'
:path => '/bin:/sbin:/usr/bin:/usr/sbin',
:architecture => 'x86_64'
}}
it { is_expected.to compile.with_all_deps }