aboutsummaryrefslogtreecommitdiff
path: root/manifests/repo.pp
blob: cbe61061cfc122d871319ed3cc2b612b55b63b41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class tor::repo (
  $ensure      = present,
  $source_name = 'torproject.org',
  $include_src = false,
) {
  apt::source { $source_name:
    ensure      => $ensure,
    location    => 'https://deb.torproject.org/torproject.org/',
    key         => '886DDD89',
    include_src => $include_src,
  }
}