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

Release 0.2.0 #13

Merged
merged 4 commits into from
Sep 20, 2024
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
cookbook-pmacct CHANGELOG
===============

## 0.2.0

- Miguel Negrón
- [1e8f3fa] Merge pull request #10 from redBorder/bugfix/#13550_restrain_user_permissions
- Luis Blanco
- [45ebad0] Merge branch 'master' into bugfix/#13550_restrain_user_permissions
- [ca6db74] add user pmacct with nologin

## 0.1.0

- David Vanhoucke
Expand Down
2 changes: 1 addition & 1 deletion resources/metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
maintainer_email '[email protected]'
license 'AGPL-3.0'
description 'Installs/Configures cookbook-pmacct'
version '0.1.0'
version '0.2.0'
2 changes: 1 addition & 1 deletion resources/providers/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
end

execute 'create_user' do
command "/usr/sbin/useradd -r #{user}"
command "/usr/sbin/useradd -r #{user} -s /sbin/nologin"
ignore_failure true
not_if "getent passwd #{user}"
end
Expand Down
Loading