File: Approx.pm

package info (click to toggle)
libconfig-model-approx-perl 1.012-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 152 kB
  • sloc: perl: 218; makefile: 2
file content (103 lines) | stat: -rw-r--r-- 1,900 bytes parent folder | download | duplicates (2)
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
99
100
101
102
103
#
# This file is part of Config-Model-Approx
#
# This software is Copyright (c) 2015-2021 by Dominique Dumont.
#
# This is free software, licensed under:
#
#   The GNU Lesser General Public License, Version 2.1, February 1999
#
package Config::Model::Approx ;
$Config::Model::Approx::VERSION = '1.012';
use Config::Model 2.123;

1 ;

# ABSTRACT: Approx configuration file editor

__END__

=pod

=encoding UTF-8

=head1 NAME

Config::Model::Approx - Approx configuration file editor

=head1 VERSION

version 1.012

=head1 SYNOPSIS

 # Check approx content
 cme check approx

 # full blown editor
 sudo cme edit approx

 # command line use
 sudo cme modify approx 'distributions:multimedia=http://www.debian-multimedia.org'

 # Perl API
 use Config::Model ;
 my $model = Config::Model -> new ( ) ;

 my $inst = $model->instance (root_class_name   => 'Approx');
 my $root = $inst -> config_root ;

 $root->load("distributions:multimedia=http://www.debian-multimedia.org") ;

 $inst->write_back() ;

=head1 DESCRIPTION

This module provides a configuration editor for Approx. Running L<cme> as root
will update C</etc/approx/approx.conf>.

Once this module is installed, you can run:

 # cme edit approx

This module and Config::Model can also be used from Perl programs to
modify safely the content of F</etc/approx/approx.conf>.

The Perl API is documented in L<Config::Model> and mostly in
L<Config::Model::Node>.

=head1 BUGS

The configuration file is reformatted when written.

=head1 SEE ALSO

=over

=item *

L<cme>

=item *

L<Using cme wiki page|https://github.com/dod38fr/config-model/wiki/Using-cme>

=back

=head1 SEE ALSO

L<cme>, L<Config::Model>,

=head1 AUTHOR

Dominique Dumont

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2015-2021 by Dominique Dumont.

This is free software, licensed under:

  The GNU Lesser General Public License, Version 2.1, February 1999

=cut