Puppet Class: gitea::config
- Defined in:
- manifests/config.pp
Summary
manages configuration filesOverview
Manages custom api.ini and robots.txt
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'manifests/config.pp', line 7
class gitea::config {
file { [
"${gitea::work_path}/custom",
"${gitea::work_path}/custom/conf",
]:
ensure => directory,
owner => $gitea::owner,
group => $gitea::group,
}
$gitea_configuration = {
'path' => "${gitea::work_path}/custom/conf/app.ini",
'require' => File["${gitea::work_path}/custom/conf"],
'notify' => Class['gitea::service'],
}
file { $gitea_configuration['path']:
ensure => file,
owner => $gitea::owner,
group => $gitea::group,
mode => '0600',
}
inifile::create_ini_settings($gitea::configuration, $gitea_configuration)
if $gitea::robots_txt != '' {
file { "${gitea::work_path}/custom/robots.txt":
mode => '0644',
source => $gitea::robots_txt,
}
}
}
|