#
# This file is part of App-Cme
#
# This software is Copyright (c) 2014-2020 by Dominique Dumont.
#
# This is free software, licensed under:
#
# The GNU Lesser General Public License, Version 2.1, February 1999
#
# ABSTRACT: Modify the configuration of an application
package App::Cme::Command::modify ;
$App::Cme::Command::modify::VERSION = '1.032';
use strict;
use warnings;
use 5.10.1;
use App::Cme -command ;
use base qw/App::Cme::Common/;
use Config::Model::ObjTreeScanner;
use Config::Model qw/initialize_log4perl/;
sub validate_args {
my ($self, $opt, $args) = @_;
$self->check_unknown_args($args);
$self->process_args($opt,$args);
$self->usage_error("No modification instructions given on command line")
unless @$args or $opt->{save};
}
sub opt_spec {
my ( $class, $app ) = @_;
return (
[ "backup:s" => "Create a backup of configuration files before saving." ],
[ "verbose!" => "show execution of the modification instructions" ],
$class->cme_global_options,
);
}
sub usage_desc {
my ($self) = @_;
my $desc = $self->SUPER::usage_desc; # "%c COMMAND %o"
return "$desc [application] [file ] instructions";
}
sub description {
my ($self) = @_;
return $self->get_documentation;
}
sub execute {
my ($self, $opt, $args) = @_;
$opt->{_verbose} = 'Loader' if $opt->{verbose};
my ($model, $inst, $root) = $self->init_cme($opt,$args);
# needed to create write_back subs
$root->dump_tree() if $opt->{save} and not @$args;
$root->load("@$args");
$root->deep_check; # consistency check
$self->save($inst,$opt) ;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
App::Cme::Command::modify - Modify the configuration of an application
=head1 VERSION
version 1.032
=head1 SYNOPSIS
# modify configuration with command line
cme modify dpkg source 'format="(3.0) quilt"'
=head1 DESCRIPTION
Modify a configuration file with the values passed on the command line.
These command must follow the syntax defined in L<Config::Model::Loader>
(which is similar to the output of L<cme dump|"/dump"> command)
Example:
cme modify dpkg 'source format="(3.0) quilt"'
cme modify multistrap my_mstrap.conf 'sections:base source="http://ftp.fr.debian.org"'
Some application like dpkg-copyright allows you to override the
configuration file name. You must then use C<-file> option:
cme modify dpkg-copyright -file ubuntu/copyright 'Comment="Silly example"'
Finding the right instructions to perform a modification may be
difficult when starting from scratch.
To get started, you can run C<cme dump --format cml> command to get
the content of your configuration in the syntax accepted by C<cme modify>:
$ cme dump ssh -format cml
Host:"*" -
Host:"alioth.debian.org"
User=dod -
Host:"*.debian.org"
IdentityFile:="~/.ssh/id_debian"
User=dod -
Then you can use this output to create instruction for a modification:
$ cme modify ssh 'Host:"*" User=dod'
Changes applied to ssh configuration:
- Host:"*" User has new value: 'dod'
=head1 Common options
See L<cme/"Global Options">.
=head1 options
=over
=item -save
Force a save even if no change was done. Useful to reformat the configuration file.
=item -verbose
Show effect of the modify instructions.
=back
=head1 SEE ALSO
L<cme>
=head1 AUTHOR
Dominique Dumont
=head1 COPYRIGHT AND LICENSE
This software is Copyright (c) 2014-2020 by Dominique Dumont.
This is free software, licensed under:
The GNU Lesser General Public License, Version 2.1, February 1999
=cut