Puppet Class: bsection
- Defined in:
- modules/bsection/manifests/init.pp
Overview
SPDX-License-Identifier: Apache-2.0 Install bsection.py to help with searching multi-gigabyte log files.
3 4 5 6 7 8 9 10 |
# File 'modules/bsection/manifests/init.pp', line 3
class bsection{
file { '/usr/local/bin/bsection':
source => 'puppet:///modules/bsection/bsection.py',
owner => 'root',
group => 'root',
mode => '0555',
}
}
|