forked from aeolus-incubator/dev-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.pp
More file actions
22 lines (20 loc) · 672 Bytes
/
test.pp
File metadata and controls
22 lines (20 loc) · 672 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class aeolus_dev_tools_path {
if $rbenv_home == undef {
Exec { path => "/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin",
logoutput => "on_failure" }
} else {
Exec { path => "$rbenv_home/bin:$rbenv_home/shims:/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin",
logoutput => "on_failure" }
}
if $aeolus_workdir == undef {
$aeolus_workdir = '/tmp'
}
if $oauth_json_file == undef {
$oauth_json_file = "/tmp/oauth.json"
}
}
class aeolus_dev_tools_install inherits aeolus_dev_tools_path {
class { tim: dev => true } -> class { conductor: dev => true }
class { aeolus-cli: dev => true }
}
class {'aeolus_dev_tools_install':}