Puppet Class: profile::logrotate

Defined in:
modules/profile/manifests/logrotate.pp

Summary

manage the log rotate service

Overview

SPDX-License-Identifier: Apache-2.0

Parameters:

  • hourly (Boolean) (defaults to: lookup('profile::logrotate::hourly'))

    By default logrotate runs daily via a systemd timer, if true it runs hourly instead



4
5
6
7
8
9
10
# File 'modules/profile/manifests/logrotate.pp', line 4

class profile::logrotate (
    Boolean $hourly = lookup('profile::logrotate::hourly'),
) {
    class { 'logrotate':
        * => wmflib::resource::dump_params(),
    }
}