forked from sous-chefs/powershell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmetadata.rb
More file actions
22 lines (20 loc) · 869 Bytes
/
metadata.rb
File metadata and controls
22 lines (20 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
name 'powershell'
maintainer 'Chef Software, Inc.'
maintainer_email 'cookbooks@getchef.com'
license 'Apache 2.0'
description 'Installs/Configures PowerShell on the Windows platform'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '3.0.7'
recipe 'powershell::default', 'Does nothing; choose the right version of Powershell by selecting the correct recipe'
recipe 'powershell::powershell2', 'Installs PowerShell 2.0'
recipe 'powershell::powershell3', 'Installs PowerShell 3.0'
recipe 'powershell::powershell4', 'Installs PowerShell 4.0'
recipe 'powershell::powershell5', 'Installs PowerShell 5.0'
recipe 'powershell::winrm', 'Configures WinRM'
recipe 'powershell::dsc', 'Desired State Configuration'
supports 'windows'
depends 'windows', '>= 1.2.8'
depends 'ms_dotnet45'
depends 'ms_dotnet4'
depends 'ms_dotnet2'
depends 'chef_handler'