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