ascii-soup / puppet-git

Puppet module to install and manage git

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Puppet module: git

This is a Puppet module for git It provides only package installation and file configuration.

Based on Example42 layouts by Alessandro Franceschi / Lab42

Official site: http://www.example42.com

Official git repository: http://github.com/example42/puppet-git

Released under the terms of Apache 2 License.

This module requires the presence of Example42 Puppi module in your modulepath.

USAGE - Basic management

  • Install git with default settings

      class { 'git': }
    
  • Clone a git repo to a local directory

      git::reposync { 'my_app':
        source_url      => 'http://repo.example42.com/git/trunk/my_app/',
        destination_dir => '/opt/myapp',
      }
    

USAGE - Overrides and Customizations

  • Use custom sources for main config file

      class { 'git':
        source => [ "puppet:///modules/example42/git/git.conf-${hostname}" , "puppet:///modules/example42/git/git.conf" ], 
      }
    
  • Use custom template for main config file. Note that template and source arguments are alternative.

      class { 'git':
        template => 'example42/git/git.conf.erb',
      }
    
  • Automatically include a custom subclass

      class { 'git':
        my_class => 'example42::my_git',
      }
    

CONTINUOUS TESTING

Travis {Build Status}[https://travis-ci.org/example42/puppet-git]

About

Puppet module to install and manage git

License:Other


Languages

Language:Puppet 85.5%Language:Ruby 14.5%