# This class handles a gitweb installation. class gitweb inherits gitosis { # the needed packages package { gitweb: ensure => installed } case $hosting_omain { '': { $hosting_domain = $domain } } # gitweb config file file { "/etc/gitweb.conf": owner => "root", group => "root", mode => 0644, ensure => present, content => template('git/gitweb.conf.erb'), } }