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
This commit is contained in:
Craig Bryant 2014-08-25 19:34:44 -06:00
parent c82c5dcf99
commit aa40f33af9
2 changed files with 2 additions and 2 deletions

View File

@ -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'

View File

@ -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'