Skip to content

Commit

Permalink
create user/group as system accounts
Browse files Browse the repository at this point in the history
  • Loading branch information
jlambert121 committed Jun 22, 2015
1 parent a196ac3 commit a6dac2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions manifests/install.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}
}
}

0 comments on commit a6dac2e

Please sign in to comment.