Skip to content

Commit fa6bc82

Browse files
committed
Implement corrections for puppet strings & fixtures
1 parent 069b5ea commit fa6bc82

File tree

2 files changed

+26
-10
lines changed

2 files changed

+26
-10
lines changed

.fixtures.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# See https://github.com/puppetlabs/puppetlabs_spec_helper#using-fixtures for details
33
---
44
fixtures:
5-
forge_modules:
6-
stdlib: "puppetlabs/stdlib"
7-
apache: "puppetlabs/apache"
8-
htpasswd: "citrin/htpasswd"
9-
vcsrepo: "puppetlabs/vcsrepo"
10-
git: "puppetlabs/git"
11-
concat: "puppetlabs/concat"
5+
repositories:
6+
stdlib: https://github.com/puppetlabs/puppetlabs-stdlib.git
7+
apache: https://github.com/puppetlabs/puppetlabs-apache.git
8+
htpasswd: https://github.com/citrininfo/puppet-htpasswd.git
9+
vcsrepo: https://github.com/puppetlabs/puppetlabs-vcsrepo.git
10+
git: https://github.com/puppetlabs-toy-chest/puppetlabs-git.git
11+
concat: https://github.com/puppetlabs/puppetlabs-concat.git

manifests/viewer.pp

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
# A class to configure the diff viewer webservice. For full details, see
2-
# https://github.com/camptocamp/puppet-catalog-diff-viewer
1+
# @summary
2+
# A class to configure the diff viewer webservice. For full details, see
3+
# https://github.com/voxpupuli/puppet-catalog-diff-viewer
4+
#
5+
# @param remote
6+
# The source git repository to fetch the catalog diff viewer tool from.
7+
#
8+
# @param password
9+
# Specifiy the desired password to set for authentication into the viewer tool post installation.
10+
#
11+
# @param revision
12+
# Specify the release or branch from the repository specified in $remote to utilize.
13+
#
14+
# @param port
15+
# Specify the port to run the diff viewer tool on.
16+
#
17+
# @param listen_ip
18+
# Specify what IP address apache should listen on for accessing the viewer tool.
319
class catalog_diff::viewer (
4-
String $remote = 'https://github.com/camptocamp/puppet-catalog-diff-viewer.git',
20+
String $remote = 'https://github.com/voxpupuli/puppet-catalog-diff-viewer.git',
521
String $password = 'puppet',
622
String $revision = 'master',
723
Integer $port = 1495,

0 commit comments

Comments
 (0)