cookbook 'windows_firewall', '= 0.1.0'
The windows_firewall cookbook has been deprecated
Author provided reason for deprecation:
The windows_firewall cookbook has been deprecated and is no longer being maintained by its authors. Use of the windows_firewall cookbook is no longer recommended.
windows_firewall (11) Versions 0.1.0 Follow42
Configures firewall rules on Windows
cookbook 'windows_firewall', '= 0.1.0', :supermarket
knife supermarket install windows_firewall
knife supermarket download windows_firewall
windows_firewall Cookbook
This cookbook configures windows firewall rules
Requirements
None
Resources
rule
Actions
:open - opens the specified port
Attribute Parameters
- attribute :port, :kind_of => Integer
- attribute :name, :kind_of => String, :name_attribute => true
- attribute :direction, :kind_of => Symbol, :default => :in, :equal_to => [:in, :out]
- attribute :protocol, :kind_of => Symbol, :default => :TCP, :equal_to => [:TCP]
- attribute :firewall_action, :kind_of => Symbol, :default => :allow, :equal_to => [:allow, :deny]
Examples
windows_firewall_rule 'Apache' do
port 8080
protocol :TCP
firewall_action :allow
end
Dependent cookbooks
This cookbook has no specified dependencies.