Skip to content
Open
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
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ This file is used to list changes made in each version of the cron cookbook.

## [7.0.30](https://github.com/sous-chefs/cron/compare/7.0.29...v7.0.30) (2025-10-15)


### Bug Fixes

* **ci:** Update workflows to use release pipeline ([#189](https://github.com/sous-chefs/cron/issues/189)) ([c5bc80f](https://github.com/sous-chefs/cron/commit/c5bc80fca65e11fd74d3730c9be7a2dccf1f9960))
Expand Down
4 changes: 2 additions & 2 deletions resources/access.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
source 'cron_manage.erb'
cookbook 'cron'

mode '0660'
mode '0600'

variables['users'] ||= []
variables['users'] << new_resource.user
Expand All @@ -49,7 +49,7 @@
source 'cron_manage.erb'
cookbook 'cron'

mode '0660'
mode '0600'

variables['users'] ||= []
variables['users'] << new_resource.user
Expand Down
1 change: 1 addition & 0 deletions test/integration/default/inspec/cron_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,5 @@

describe file('/etc/cron.allow') do
its('content') { should match /alice/ }
its('mode') { should cmp '0600' }
end
Loading