Book Image

Configuration Management with Chef-Solo

By : Naveed ur Rahman
Book Image

Configuration Management with Chef-Solo

By: Naveed ur Rahman

Overview of this book

Table of Contents (13 chapters)

Resources


Resources are a key part of a recipe; they define which action needs to be taken, which files need to be created, and which service needs to be restarted. Resources are responsible for taking any particular action on a node. They are written in a small block of Ruby code that runs sequentially as defined in the recipe. The chef-client looks for a resource, and on successful execution of the resource, it will return the success code to the chef-client. In case of any error, chef-client will terminate the operation and display an error.

As our new machine is ready, let's use some resources and install some basic packages. We will install the vim and screen packages on our new machine. The vim package is used for editing any document, whereas the screen package is a multiplexer that allows a user to start multiple tasks inside a single terminal.

Primarily, a resource has four components: type, name, attributes with values, and action. Most of the time, attributes have default values...