From a6dac2ee23459fa57b0eb6b6ce499fafde0fae5d Mon Sep 17 00:00:00 2001 From: Justin Lambert Date: Fri, 19 Jun 2015 11:25:04 -0600 Subject: [PATCH] create user/group as system accounts --- manifests/install.pp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manifests/install.pp b/manifests/install.pp index 1e60803d..4188defb 100644 --- a/manifests/install.pp +++ b/manifests/install.pp @@ -69,11 +69,13 @@ if $consul::manage_user { user { $consul::user: ensure => 'present', + system => true, } } if $consul::manage_group { group { $consul::group: ensure => 'present', + system => true, } } }