-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoloistrc.example
More file actions
81 lines (68 loc) · 1.46 KB
/
soloistrc.example
File metadata and controls
81 lines (68 loc) · 1.46 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cookbook_paths:
- site-cookbooks
recipes:
- apt
- git::source
- java
- mysql::server
- mysql::client
- rbit_workstation::mysql_workbench
- postgresql::server
- postgresql::libpq
- nodejs
- rbit_workstation::packages
- rbit_workstation::mc
- rbit_workstation::intellij
- rubymine
- rbit_workstation::opera
- google-chrome
- rbit_workstation::pac_manager
# Attributes for node
node_attributes:
# Git attributes
git:
version: '1.8.5.3'
# Java attributes
java:
install_flavor: 'oracle'
jdk_version: '7'
oracle:
accept_oracle_download_terms: true
mysql:
remove_anonymous_users: true
server_root_password: "debug"
server_repl_password: "debug"
server_debian_password: "debug"
postgresql:
version: '9.3'
initdb_options: '--locale=en_US.UTF-8'
apt_distribution: "precise"
password:
postgres: 'debug'
users:
- username: 'dev'
password: 'dev'
superuser: true
createdb: true
login: true
# Required to allow connections
pg_hba:
- type: 'local'
db: 'all'
user: 'postgres'
addr: ''
method: 'trust'
- type: 'host'
db: 'all'
user: 'all'
addr: '127.0.0.1/32'
method: 'trust'
- type: 'host'
db: 'all'
user: 'all'
addr: '::1/128'
method: 'trust'
# RubyMine settings
rubymine:
version: '6.0.2'
directory: 'RubyMine-6.0.2'