Skip to content

Commit

Permalink
Merge pull request #52 from TelekomLabs/limits
Browse files Browse the repository at this point in the history
chefspec test for limites
  • Loading branch information
arlimus committed Sep 16, 2014
2 parents 192f689 + 5199a51 commit 50f7d49
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/limits.rb
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

template '/etc/security/limits.d/10.hardcore.conf' do
source 'limits.conf.erb'
mode 0440
mode '0440'
owner 'root'
group 'root'
not_if { node['security']['kernel']['enable_core_dump'] }
Expand Down
34 changes: 34 additions & 0 deletions spec/recipes/limits_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# encoding: UTF-8
#
# Copyright 2014, Deutsche Telekom AG
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#

require_relative '../spec_helper'

describe 'os-hardening::limits' do

let(:chef_run) do
ChefSpec::Runner.new.converge(described_recipe)
end

it 'creates /etc/sysconfig/init' do
expect(chef_run).to create_template('/etc/security/limits.d/10.hardcore.conf').with(
user: 'root',
group: 'root',
mode: '0440'
)
end

end

0 comments on commit 50f7d49

Please sign in to comment.