logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

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

Author

       Dominique Dumont

Bugs

       The configuration file is reformatted when written.

Description

       This module provides a configuration editor for Approx. Running cme as root will update
       "/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
       /etc/approx/approx.conf.

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

Name

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

See Also

       cme, Config::Model,

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() ;

Version

       version 1.012

See Also