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

nut (4) Versions 0.0.4

Installs/Configures Network UPS Tools

Policyfile
Berkshelf
Knife
cookbook 'nut', '~> 0.0.4', :supermarket
cookbook 'nut', '~> 0.0.4'
knife supermarket install nut
knife supermarket download nut
README
Dependencies
Quality 33%

Description

Installs and configures Network UPS Tools.

Requirements

  • Chef 12.3.0

Platform

  • Debian, Ubuntu

Tested on:

  • Ubuntu 12.04 (Precise Penguin)
  • Ubuntu 14.04 (Trusty Tahr)

Unsupported:

  • Ubuntu 13.04

Attributes

The main attributes are listed below. The complete list is documented in the metadata.rb and attributes/default.rb files included with the project.

  • node['nut']['mode'] - The mode determines which parts of NUT is to be started (netserver for the network server, netclient for a client that connects to the network server, standalone for running a standalone install)
  • node['nut']['devices'] - Serial devices to change to the NUT group
  • node['nut']['ups'] - The driver settings for your UPS
  • node['nut']['users'] - Determines user access control, authentication and roles
  • node['nut']['monitors'] - The monitor configuration
  • node['nut']['listen'] - Array of ip addresses to listen to. Default only 127.0.0.1

Usage

Add the nut recipe to your run list.

Using knife to add nut to the run list
knife node run_list add [NODE] 'recipe[nut]'
Basic Node Structure
{
    "nut": {
        "mode": "standalone",

        "devices": ["ttyS0"],

        "ups": {
            'cyberpower': {
                "driver": "powerpanel",
                "port": "/dev/ttyS0",
                "desc": "Cyberpower CP1500AVR"
            }
        },

        "users": {
            "vagrant": {
                "password": "vagrant",
                "upsmon master": true
            }
        },

        "monitors": {
            "cyberpower": {
                "system": "cyberpower@localhost",
                "power_value": 1,
                "username": "vagrant",
                "password": "vagrant",
                "role": "master"
            }
        }

    }
}

Note about listen ip addresses.

By default upsd listen on 127.0.0.1.

If you want upsd to listen to on other than 127.0.0.1 interface or more that only 127.0.0.1.
Override this attribute in a role or environment.

    "nut": {
                ...
                        "listen": [
                                "127.0.0.1",
                                "192.168.1.1"
                              ],
                ...
                    }

Note about users.

If upsmon process must run in SLAVE mode, then set node attribute follows:
"users": {
"vagrant": {
"password": "vagrant",
"upsmon": "slave"
}
},

"upsmon master": false IS INVALID attribute in attributes setup.

Running inside vagrant

First you'll need to install [Virtual Box](https://www.virtualbox.org/), [Vagrant](http://vagrantup.com/) and a UPS
Create the cookbooks folder.
mkdir cookbook && ln -s `pwd` cookbooks/nut
Start Vagrant
vagrant up [precise|trusty]

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

Collaborator Number Metric
            

0.0.4 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

0.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Foodcritic Metric
            

0.0.4 passed this metric

No Binaries Metric
            

0.0.4 passed this metric

Testing File Metric
            

0.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

0.0.4 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number