mirror of
https://github.com/zulip/zulip.git
synced 2025-11-11 09:27:43 +00:00
This makes for easier tab-completion, and also is a bit more explicit about the expected consumer.
17 lines
366 B
Puppet
17 lines
366 B
Puppet
# @summary Configures a node for monitoring with Prometheus
|
|
#
|
|
class kandra::prometheus::base {
|
|
group { 'prometheus':
|
|
ensure => present,
|
|
gid => '1060',
|
|
}
|
|
user { 'prometheus':
|
|
ensure => present,
|
|
uid => '1060',
|
|
gid => '1060',
|
|
shell => '/bin/bash',
|
|
home => '/nonexistent',
|
|
managehome => false,
|
|
}
|
|
}
|