Add group 'openstackwatch' for the openstackwatch user.

Change-Id: Ie5452b76ba0bb404899a75f666df5ad064b26dbb
Reviewed-on: https://review.openstack.org/24598
Approved: Jeremy Stanley <fungi@yuggoth.org>
Reviewed-by: Jeremy Stanley <fungi@yuggoth.org>
Tested-by: Jenkins
This commit is contained in:
Anita Kuno 2013-03-17 11:49:39 -04:00 committed by Jenkins
parent f36c72ec71
commit 8ae4c70b1a

View File

@ -11,11 +11,16 @@ class jeepyb::openstackwatch(
) {
include jeepyb
group { 'openstackwatch':
ensure => present,
}
user { 'openstackwatch':
ensure => present,
comment => 'OpenStackWatch User',
shell => '/bin/bash',
gid => 'openstackwatch',
require => Group['openstackwatch'],
}
cron { 'openstackwatch':
@ -37,5 +42,6 @@ class jeepyb::openstackwatch(
owner => 'root',
group => 'openstackwatch',
mode => '0640',
require => Group['openstackwatch'],
}
}