Skip to content

Commit

Permalink
Merge pull request #804 from hunner/strict_variables
Browse files Browse the repository at this point in the history
Fix strict variables
  • Loading branch information
hunner committed Jul 29, 2014
2 parents 7fd9a90 + 63a1a82 commit 7b33ee2
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spec/classes/mod/negotiation_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
:lsbdistcodename => 'squeeze',
:operatingsystemrelease => '6',
:concat_basedir => '/dne',
:id => 'root',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end

Expand Down
2 changes: 2 additions & 0 deletions spec/classes/mod/php_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@
:operatingsystemrelease => '6',
:lsbdistcodename => 'squeeze',
:concat_basedir => '/dne',
:id => 'root',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end
context 'with content param' do
Expand Down
1 change: 1 addition & 0 deletions spec/classes/mod/worker_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@
:operatingsystemrelease => '6',
:id => 'root',
:concat_basedir => '/dne',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end

Expand Down
4 changes: 4 additions & 0 deletions spec/defines/fastcgi_server_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
:operatingsystemrelease => '6',
:id => 'root',
:concat_basedir => '/dne',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end
let :facts do default_facts end
Expand All @@ -35,6 +36,7 @@
:lsbdistcodename => 'squeeze',
:id => 'root',
:concat_basedir => '/dne',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end
let :facts do default_facts end
Expand All @@ -53,6 +55,7 @@
:operatingsystemrelease => '9',
:id => 'root',
:concat_basedir => '/dne',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end
let :facts do default_facts end
Expand All @@ -73,6 +76,7 @@
:lsbdistcodename => 'squeeze',
:id => 'root',
:concat_basedir => '/dne',
:path => '/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin',
}
end
describe ".conf content" do
Expand Down

0 comments on commit 7b33ee2

Please sign in to comment.