22 lines
730 B
Ruby
22 lines
730 B
Ruby
name "ufw"
|
|
maintainer "Opscode, Inc."
|
|
maintainer_email "matt@opscode.com"
|
|
license "Apache 2.0"
|
|
description "Installs/Configures ufw"
|
|
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
|
|
version "0.7.4"
|
|
depends "firewall", ">= 0.9"
|
|
|
|
%w{ ubuntu }.each do |os|
|
|
supports os
|
|
end
|
|
|
|
attribute "firewall/rules",
|
|
:display_name => "List of firewall rules for the node.",
|
|
:description => "List of firewall rules for the node. Possibly set by node, roles or data bags.",
|
|
:type => "array"
|
|
|
|
attribute "firewall/securitylevel",
|
|
:display_name => "Security level of the node.",
|
|
:description => "Security level of the node, may be set by node, roles or environment."
|