Skip to content

Commit

Permalink
user : ntpseec
Browse files Browse the repository at this point in the history
  • Loading branch information
bugoff committed Feb 9, 2024
1 parent 4f08c68 commit a43f17a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions spec/unit/recipes/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
end

it 'is owned by ntp:ntp' do
expect(directory.owner).to eq('ntp')
expect(directory.group).to eq('ntp')
expect(directory.owner).to eq('ntpsec')
expect(directory.group).to eq('ntpsec')
end

it 'has 0755 permissions' do
Expand All @@ -49,9 +49,9 @@
expect(chef_run).to create_directory('/var/log/ntpstats/')
end

it 'is owned by ntp:ntp' do
expect(directory.owner).to eq('ntp')
expect(directory.group).to eq('ntp')
it 'is owned by ntpsec:ntpsec' do
expect(directory.owner).to eq('ntpsec')
expect(directory.group).to eq('ntpsec')
end

it 'has 0755 permissions' do
Expand Down

0 comments on commit a43f17a

Please sign in to comment.