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

janitor (6) Versions 1.0.0

A General Cookbook used to cleanup files and directories on nodes

Policyfile
Berkshelf
Knife
cookbook 'janitor', '= 1.0.0', :supermarket
cookbook 'janitor', '= 1.0.0'
knife supermarket install janitor
knife supermarket download janitor
README
Dependencies
Quality -%

Description

This cookbook is meant to keep order on a running node to purge files
on the filesystem that are unwanted. You could also apply some criteria to the files
that are targeted such as regular expressions, age, and size.

Requirements

Chef, Linux

Platform:

  • redhat
  • centos
  • ubuntu
  • debian
  • macos
  • Good possibility it will work in windows as all path references have been abstracted. (Not tested)

Cookbooks:

No cookbooks defined

Resources

janitor_directory

Actions

  • purge: Default action.

Attribute Parameters

janitor_directory

  • path - Resource name or path parameter will pass the path to be examined to the lwrp.

  • include_only

    • Array of regular expressions that are applied to the list of files present in path.
    • This will eliminate all entries except for those matching the regular expressions.
    • Defaults to nil.
  • exclude_all

    • Array of regular expressions that are applied to the list of files present in path.
    • This will eliminate all entries matching the regular expressions.
    • Defaults to nil.
  • age - Files older than age (in days) will be deleted.

    • Defaults to nil.
  • size - Files larger than the size (in b,M,G,T,P) will be deleted.

    • Defaults to nil.
  • recursive - enable recursive searching from the path indicated in the resource

    • Defaults to false

Examples

    #  Delete all files in /var/log with the .gz extension
    janitor_directory "/var/log" do
      include_only    [/.*\.gz$]
      action          :purge
    end

    #  Delete all files in /var/log with the .gz and numeric extension
    janitor_directory "/var/log" do
      include_only    [/.*\.gz$/,/.*\.\d/]
      action          :purge
    end

    # Delete all files in /var/log (recusively) with the .gz and numeric extension
    # And are also larger than 10M and older than 30 days
    janitor_directory "/var/log" do
      include_only    [/.*\.gz$/,/.*\.\d/]
      age             30
      size            "10M"
      recursive       true
      action          :purge
    end

Dependent cookbooks

This cookbook has no specified dependencies.

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

No quality metric results found