Update git url to hound-search

The etsy folks have moved hound to hound-search.

Also fix a puppet-lint error. Apparently we're now
NOT supposed to do the leading ::.

Change-Id: I27704d5f20e6cab6881f12a1a7d5602499120499
This commit is contained in:
Monty Taylor 2020-04-21 15:58:46 -05:00
parent e5be91ea8a
commit 0edcc83e70
1 changed files with 4 additions and 4 deletions

View File

@ -10,7 +10,7 @@ class hound (
$serveraliases = undef, $serveraliases = undef,
$vhost_name = $::fqdn, $vhost_name = $::fqdn,
$ulimit_max_open_files = 2048, $ulimit_max_open_files = 2048,
$git_source_uri = 'git://github.com/etsy/Hound.git', $git_source_uri = 'https://github.com/hound-search/hound.git',
) { ) {
$docroot = "${www_base}/hound" $docroot = "${www_base}/hound"
@ -72,7 +72,7 @@ class hound (
} }
} }
vcsrepo { '/home/hound/src/github.com/etsy/hound': vcsrepo { '/home/hound/src/github.com/hound-search/hound':
ensure => latest, ensure => latest,
provider => git, provider => git,
source => $git_source_uri, source => $git_source_uri,
@ -80,7 +80,7 @@ class hound (
} }
exec { 'build_hound': exec { 'build_hound':
command => 'go install github.com/etsy/hound/cmds/...', command => 'go install github.com/hound-search/hound/cmds/...',
path => '/bin:/usr/bin:/usr/local/bin', path => '/bin:/usr/bin:/usr/local/bin',
environment => 'GOPATH=/home/hound', environment => 'GOPATH=/home/hound',
cwd => '/home/hound', cwd => '/home/hound',
@ -113,7 +113,7 @@ class hound (
before => Service['hound'], before => Service['hound'],
} }
include ::httpd include httpd
httpd::mod { 'rewrite': httpd::mod { 'rewrite':
ensure => present, ensure => present,