mirror of https://github.com/zulip/zulip.git
17 lines
369 B
ObjectPascal
17 lines
369 B
ObjectPascal
|
# @summary Configures a node for monitoring with Prometheus
|
||
|
#
|
||
|
class zulip_ops::prometheus::base {
|
||
|
group { 'prometheus':
|
||
|
ensure => present,
|
||
|
gid => '1060',
|
||
|
}
|
||
|
user { 'prometheus':
|
||
|
ensure => present,
|
||
|
uid => '1060',
|
||
|
gid => '1060',
|
||
|
shell => '/bin/bash',
|
||
|
home => '/nonexistent',
|
||
|
managehome => false,
|
||
|
}
|
||
|
}
|