Puppet Class: twlight::fetch
- Inherits:
- twlight
- Defined in:
- manifests/fetch.pp
Overview
| 1 2 3 4 5 6 7 8 9 10 | # File 'manifests/fetch.pp', line 1
class twlight::fetch inherits twlight {
  vcsrepo { "${root_dir}":
    ensure   => present,
    provider => git,
    source   => $git_repository,
    revision => $git_revision,
  }
} |