From dccb2189bde7e004667ec4e3fd0b4df3779e808c Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 23 Jul 2013 14:46:57 +0200 Subject: [PATCH] Vagrant: Add vagrant user to group icinga-cmd The vagrant user is now allowed to interact with both the icinga pipe and the livestatus socket. refs #4366 --- .vagrant-puppet/manifests/default.pp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.vagrant-puppet/manifests/default.pp b/.vagrant-puppet/manifests/default.pp index 328f116f2..f0efde341 100644 --- a/.vagrant-puppet/manifests/default.pp +++ b/.vagrant-puppet/manifests/default.pp @@ -355,3 +355,8 @@ file { ['/etc/icinga2-web/', file { '/etc/motd': source => 'puppet:////vagrant/.vagrant-puppet/files/etc/motd' } + +user { 'vagrant': + groups => 'icinga-cmd', + require => Group['icinga-cmd'] +}