/usr/share/perl5/Config/Model/LcdProc.pm is in libconfig-model-lcdproc-perl 2.046-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | #
# This file is part of Config-Model-LcdProc
#
# This software is Copyright (c) 2016 by Dominique Dumont.
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
package Config::Model::LcdProc;
$Config::Model::LcdProc::VERSION = '2.046';
use 5.10.1;
use Config::Model 2.043;
1;
# ABSTRACT: Edit and validate LcdProc configuration file
__END__
=pod
=encoding UTF-8
=head1 NAME
Config::Model::LcdProc - Edit and validate LcdProc configuration file
=head1 VERSION
version 2.046
=head1 SYNOPSIS
=head2 invoke editor
The following command will load C</etc/LCDd.conf> and launch a
graphical editor:
cme edit lcdproc
=head2 Just check lcdproc configuration
You can also use L<cme> to run sanity checks on the configuration file:
cme check lcdproc
=head2 Fix warnings
When run, cme may issue several warnings regarding the content of your file.
You can choose to fix (most of) these warnings with the command:
cme fix lcdproc
=head1 DESCRIPTION
This module provides a configuration editor (and models) for the
configuration file of LcdProc, i.e. C</etc/LCDd.conf>.
This module can also be used to modify safely the content of this file
from a Perl programs.
=head1 SEE ALSO
=over
=item *
http://lcdproc.omnipotent.net/
=item *
L<cme>
=item *
L<Config::Model>
=item *
http://github.com/dod38fr/config-model/wiki/Using-config-model
=back
=head1 AUTHOR
Dominique Dumont
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2016 by Dominique Dumont.
This is free software, licensed under:
The GNU Lesser General Public License, Version 2.1, February 1999
=cut
|