Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

htpasswd (23) Versions 2.0.2

Provider for htpasswd

Policyfile
Berkshelf
Knife
cookbook 'htpasswd', '= 2.0.2', :supermarket
cookbook 'htpasswd', '= 2.0.2'
knife supermarket install htpasswd
knife supermarket download htpasswd
README
Dependencies
Changelog
Quality -%

htpasswd Cookbook

Cookbook Version
Build Status
OpenCollective
OpenCollective
License

Manage users in htpasswd files.

Maintainers

This cookbook is maintained by the Sous Chefs. The Sous Chefs are a community of Chef cookbook maintainers working together to maintain important cookbooks. If you’d like to know more please visit sous-chefs.org or come chat with us on the Chef Community Slack in #sous-chefs.

Requirements

Platforms

  • CentOS 7+
  • Debian 9+
  • Ubuntu 16.04+ LTS

Chef Infra

This cookbook requires Chef Infra >= 15.3.

Resource/Provider

htpasswd

Actions

  • :add: Add a login in a htpasswd file. Update and modify it if there is already one and create file if not found (default)
  • :overwrite: Overwrite an htpasswd file (delete file and add user) NOTE: This action is not idempotent.
  • :delete: Delete a login in a htpasswd file.

Parameters

  • :file: Path of the htpasswd to manage
  • :user: User to create
  • :password: Password for the user
  • :type: Password algorithm to use. Valid options are: "md5", "bcrypt", "sha1", "plaintext", or "crypt". Default is "md5"
  • :mode: File mode for the file. Default is 0640.

Example

# add user "foo" with password "bar" to "/etc/nginx/htpassword" with the default md5 type.
htpasswd "/etc/nginx/htpassword" do
  user "foo"
  password "bar"
end

# add user "foo" with password "bar" using sha1 as the type.
htpasswd "/etc/nginx/htpassword" do
  user "foo"
  password "bar"
  type "sha1"
end

# add user "foo" with encrypted password using plaintext as the type.
htpasswd "/etc/nginx/htpassword" do
  user "foo"
  password "$apr1$H5Z8CUB.$L3wyxUF1ZDd.oZFlTkJ4X."
  type "plaintext"
end

Contributors

This project exists thanks to all the people who contribute.

Backers

Thank you to all our backers!

https://opencollective.com/sous-chefs#backers

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website.

https://opencollective.com/sous-chefs/sponsor/0/website
https://opencollective.com/sous-chefs/sponsor/1/website
https://opencollective.com/sous-chefs/sponsor/2/website
https://opencollective.com/sous-chefs/sponsor/3/website
https://opencollective.com/sous-chefs/sponsor/4/website
https://opencollective.com/sous-chefs/sponsor/5/website
https://opencollective.com/sous-chefs/sponsor/6/website
https://opencollective.com/sous-chefs/sponsor/7/website
https://opencollective.com/sous-chefs/sponsor/8/website
https://opencollective.com/sous-chefs/sponsor/9/website

htpasswd Cookbook Changelog

This file is used to list changes made in each version of the htpasswd cookbook.

2.0.2 - 2021-06-08

  • [CI] Update ActionsHub actions to point at main
  • [CI] Update GitHub Actions checkout to v2

2.0.1 - 2021-06-01

2.0.0 - 2021-05-13

  • Chef 17 updates: enable unified_mode on all resources
  • Bump required Chef Infra Client to >= 15.3

1.0.0 - 2020-09-28

Fixed

  • Automated PR: Cookstyle Changes #39
  • Automated PR: Standardising Files #38
  • Fix converge failures on Chef 16
  • Fix idempotency for :add and :delete actions
  • Fix htauth gem loading issues

Added

  • Support for 'plaintext' type #32
  • Adoption by Sous-Chefs #40
  • Add delete and overwrite test-kitchen suites
  • Add mode parameters for file

Changed

  • Update test-kitchen to modern platforms
  • Update metadata.rb for Sous Chefs
  • Update README.md for Sous Chefs
  • Convert htpasswd to a custom resource

Removed

  • Remove unused recipes and other dependencies

0.3.0 - 2017-05-21

  • Tests #30
  • Fix FC069, FC071, FC078 #26
  • Update testing #25
  • Switch from python to poise-python #24
  • Update attribute default.rb #22
  • Drop ruby 1.9.3 #20
  • Add default package to packages attribute #19
  • Fix Jenkins URL to match github repo #18

0.2.4 - 2014-09-23

  • Remove ruby dep (very old and unmaintained) (fixed #15)
  • Fix rubocop
  • Update rubocop

0.2.2 - 2014-09-17

  • Cleanup provider init
  • Add why-run

0.2.0 - 2014-09-17

  • Add matchers for chefspec #14
  • Added a new resource type so the hashing algorithm can be changed #13

0.1.2 - 2014-03-14

  • Rubocop #12
  • Fix travis #11
  • Use htauth lib to manage htpasswd files. #10
  • Added :delete action for user #5

0.0.3 - 2013-07-18

  • Berkshelf support

0.0.2 - 2013-07-18

  • Initial release

No quality metric results found