16 lines
492 B
Puppet
16 lines
492 B
Puppet
## confdroid_gitea::main::config.pp
|
|
# Module name: confdroid_gitea
|
|
# Author: 12ww1160 (12ww1160@confdroid.com)
|
|
# @summary manages the logic for the confdroid_gitea Puppet module.
|
|
##############################################################################
|
|
class confdroid_gitea::main::config (
|
|
|
|
) inherits confdroid_gitea::params {
|
|
include confdroid_gitea::main::service
|
|
|
|
exec { 'systemd-daemon-reload':
|
|
command => '/bin/systemctl daemon-reload',
|
|
refreshonly => true,
|
|
}
|
|
}
|