forked from logicalclocks/conda-chef
-
Notifications
You must be signed in to change notification settings - Fork 0
/
metadata.rb
40 lines (30 loc) · 1.11 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
35
36
37
38
39
40
name "conda"
maintainer "Jim Dowling"
maintainer_email '[email protected]'
license 'Apache v.2'
description 'Installs/Configures conda'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version "0.3.0"
supports 'ubuntu', '= 14.04'
supports 'ubuntu', '= 16.04'
supports 'centos', '= 7.2'
depends 'magic_shell'
depends 'apache2'
recipe "conda::install", "Installs conda"
recipe "conda::default", "Configures conda"
recipe "conda::repo", "Installs a conda repo on an apache server"
attribute "conda/dir",
:description => "Base installation directory for Conda",
:type => 'string'
attribute "conda/user",
:description => "User that runs conda",
:type => 'string'
attribute "conda/group",
:description => "Group that runs conda",
:type => 'string'
attribute "install/dir",
:description => "Set to a base directory under which we will install.",
:type => "string"
attribute "install/user",
:description => "User to install the services as",
:type => "string"