#!/usr/bin/env perl

package
	git_update_production;

# ABSTRACT: Update production Puppet environment from staging branch

use strict;
use warnings;

use App::Puppet::Environment::Updater;

App::Puppet::Environment::Updater->new_with_options({
	environment => 'production',
	from        => 'staging'
})->run();


__END__
=pod

=head1 NAME

git_update_production - Update production Puppet environment from staging branch

=head1 VERSION

version 0.001000

=head1 SYNOPSIS

	$ git update-production

=head1 SEE ALSO

=over

=item *

L<App::Puppet::Environment::Updater|App::Puppet::Environment::Updater>

=back

=head1 AUTHOR

Manfred Stock <mstock@cpan.org>

=head1 COPYRIGHT AND LICENSE

This software is copyright (c) 2014 by Manfred Stock.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

