Puppet Class: profile::mariadb::research
- Defined in:
- modules/profile/manifests/mariadb/research.pp
Overview
SPDX-License-Identifier: Apache-2.0 Research host
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
# File 'modules/profile/manifests/mariadb/research.pp', line 3
class profile::mariadb::research {
group { 'mysql':
ensure => present,
name => 'mysql',
system => true,
}
user { 'mysql':
ensure => present,
system => true,
groups => 'mysql',
home => '/nonexistent',
}
firewall::service { 'mariadb':
proto => 'tcp',
port => 3306,
src_sets => ['INTERNAL'],
}
}
|