forked from jackl0phty/opschef-cookbook-openvas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
18 lines (17 loc) · 920 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
maintainer "Gerald L. Hevener Jr., M.S."
maintainer_email "[email protected]"
license "Apache 2.0"
description "Installs/Configures openvas"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.0.52"
recipe "openvas", "Default recipe. Does nothing by default."
recipe "openvas::client", "Installs repo & the OpenVAS client."
recipe "openvas::repo", "Installs the OpenVAS YUM repo."
recipe "openvas::greenbone_scan_configs", "Downloads greenbone scan configs."
recipe "openvas::nmap", "Install port scanner Nmap."
recipe "openvas::openvasknife", "Install Perl cmd-line utility openvasknife."
recipe "openvas::scan_single_target", "Used openvasknife to scan a target."
recipe "openvas::server", "Install the OpenVAS server."
%w{ apt perl openvas }.each do |cb|
depends cb
end