From aa40f33af95442df2a99896f1f7f4bc821f7bf66 Mon Sep 17 00:00:00 2001 From: Craig Bryant Date: Mon, 25 Aug 2014 19:34:44 -0600 Subject: [PATCH] Create a monasca group All monasca users will belong to the monasca group so /var/log/monasca can be writable for all monasca users so there can be the one monasca log directory There will no longer be a monasca-notification group The code adding this group will be added to other cookbooks so the group will be created correctly no matter which cookbook runs first Change-Id: Ic47701fa24d33a8d8d713697901f13c09790c87d --- attributes/default.rb | 2 +- metadata.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/attributes/default.rb b/attributes/default.rb index 2a31b1f..a48c88c 100644 --- a/attributes/default.rb +++ b/attributes/default.rb @@ -1,7 +1,7 @@ # encoding: UTF-8 # default[:monasca_notification][:user] = 'monasca-notification' -default[:monasca_notification][:group] = 'monasca-notification' +default[:monasca_notification][:group] = 'monasca' default[:monasca_notification][:conf_dir] = '/etc/monasca' default[:monasca_notification][:log_dir] = '/var/log/monasca' default[:monasca_notification][:data_bag] = 'monasca_notification' diff --git a/metadata.rb b/metadata.rb index b6b6517..5de4f53 100644 --- a/metadata.rb +++ b/metadata.rb @@ -6,5 +6,5 @@ maintainer_email 'hpcs-mon@hp.com' license 'All rights reserved' description 'Installs/Configures monasca_notification' long_description IO.read(File.join(File.dirname(__FILE__), 'README.md')) -version '0.1.17' +version '0.1.18' depends 'python'