-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathmetadata.rb
More file actions
27 lines (23 loc) · 770 Bytes
/
metadata.rb
File metadata and controls
27 lines (23 loc) · 770 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name "linux-vm"
maintainer "Patrick Wyatt"
maintainer_email "pat@codeofhonor.com"
license "MIT License"
description "Installs and configures linux-vm"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "1.0.0"
%w{ubuntu debian centos redhat amazon scientific fedora}.each do |os|
supports os
end
# Cookbooks from Opscode
# Use 1.1.2, which is the last version of this cookbook that doesn't
# have copy-protection checks related to chef-solo
depends 'users', '= 1.1.2'
depends 'build-essential'
depends 'curl'
depends 'git'
depends 'openssh'
depends 'sudo'
depends 'zsh'
# Cookbooks with dependencies listed in Berksfile
depends 'chef-solo-search'
depends 'chef-dotfiles'