forked from aws/opsworks-cookbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
35 lines (29 loc) · 1.01 KB
/
metadata.rb
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
28
29
30
31
32
33
34
maintainer "Amazon Web Services"
description "Install .gem and .deb depencencies"
version "0.1"
recipe "dependencies::update", "Update all packages and gems"
attribute "dependencies/gems",
:display_name => "Gems to install",
:description => "A list of Rubygems to install",
:required => false,
:type => 'hash'
attribute "dependencies/debs",
:display_name => "Debian packages to install",
:description => "A list of Debian packages (.deb) to install",
:required => false,
:type => 'hash'
attribute "dependencies/update_debs",
:display_name => "Update sources",
:description => "Update sources using apt-get update",
:required => false,
:type => 'boolean'
attribute "dependencies/upgrade_debs",
:display_name => "Update packages",
:description => "Update packages using apt-get upgrade",
:required => false,
:type => 'boolean'
attribute "dependencies/upgrade_gems",
:display_name => "Update gems",
:description => "Update gems using gem update",
:required => false,
:type => 'boolean'