51fd328fef
Try and create Berksfile that will work with berkshelf 2 or 3 Fixed style issues Also, added .gitreview file Change-Id: I47caf4930ac18bcfc62737e851fff1fe15dd9c9f
21 lines
371 B
Ruby
21 lines
371 B
Ruby
# encoding: UTF-8#
|
|
#
|
|
# Create an influxdb database and users
|
|
# Leverages the cookbook from https://github.com/SimpleFinance/chef-influxdb
|
|
|
|
service 'influxdb' do
|
|
action :start
|
|
end
|
|
|
|
influxdb_database 'mon' do
|
|
action :create
|
|
end
|
|
|
|
%w[mon_api mon_persister].each do |user|
|
|
influxdb_user user do
|
|
action :create
|
|
password 'password'
|
|
databases ['mon']
|
|
end
|
|
end
|