Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Satisfy strict variables test #130

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .fixtures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ fixtures:
ref: 'v1.4.1'
nsswitch:
repo: 'git://github.com/ghoneycutt/puppet-module-nsswitch.git'
ref: 'v1.3.0'
ref: 'v1.5.0'
symlinks:
pam: "#{source_dir}"
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ gem 'puppet-lint-undef_in_function-check'
gem 'puppet-lint-unquoted_string-check'
gem 'puppet-lint-variable_contains_upcase'

# rspec must be v2 for ruby 1.8.7
if RUBY_VERSION >= '1.8.7' and RUBY_VERSION < '1.9'
# rspec must be v2 for ruby 1.8.7
gem 'rspec', '~> 2.0'
# rake must be v10 for ruby 1.8.7
gem 'rake', '~> 10.0'
end
3 changes: 3 additions & 0 deletions manifests/init.pp
Original file line number Diff line number Diff line change
Expand Up @@ -741,6 +741,9 @@
}
}
'Solaris': {
$default_package_name = undef
$default_pam_d_login_template = undef
$default_pam_d_sshd_template = undef
case $::kernelrelease {
'5.9': {
$default_pam_auth_lines = [
Expand Down
1 change: 1 addition & 0 deletions manifests/limits.pp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@

if $config_file_lines == undef and $config_file_source == undef {
$content = template('pam/limits.conf.erb')
$config_file_source_real = undef
} else {
# config_file_lines takes priority over config_file_source
if $config_file_lines == undef {
Expand Down