Puppet Class: proxysql::prerequisites
- Inherits:
- proxysql
- Defined in:
-
manifests/prerequisites.pp
Summary
Manage the prerequisites where the ProxySQL package might be.
Overview
4
5
6
7
8
9
10
11
12
13
14
15
|
# File 'manifests/prerequisites.pp', line 4
class proxysql::prerequisites inherits proxysql {
if $proxysql::sys_owner != 'root' { # let's assume that 'root' will exist and not touch that...
group { $proxysql::sys_group:
ensure => 'present',
}
user { $proxysql::sys_owner:
ensure => 'present',
groups => $proxysql::sys_group,
}
}
}
|