Skip to content

Instantly share code, notes, and snippets.

@petems
Created May 24, 2016 15:12
Show Gist options
  • Save petems/548d70acbcc060604bf033fc8c1f29bf to your computer and use it in GitHub Desktop.
Save petems/548d70acbcc060604bf033fc8c1f29bf to your computer and use it in GitHub Desktop.
class profile::vcs {
vcsrepo { '/opt/repository-example':
ensure => present,
provider => git,
source => 'https://github.com/cloudera/repository-example',
revision => '10abb2ff63a6a2c182aa90d6be120896b5d3a4cc',
}
vcsrepo { '/opt/spamassassin':
ensure => present,
provider => svn,
source => 'http://svn.apache.org/repos/asf/spamassassin/trunk',
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment