From 2fb995f959d56e3ca9634b9914eac3325f1f11c7 Mon Sep 17 00:00:00 2001 From: William Clark Date: Fri, 13 Dec 2019 17:01:25 -0500 Subject: [PATCH] Specify /pulp/api/v3 Fixes #49 --- manifests/apache.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/apache.pp b/manifests/apache.pp index 26f1cba7..20e9442e 100644 --- a/manifests/apache.pp +++ b/manifests/apache.pp @@ -1,7 +1,7 @@ # Configure an Apache vhost # @api private class pulpcore::apache { - $api_path = '/pulp/api' + $api_path = '/pulp/api/v3' $api_url = "http://${pulpcore::api_host}:${pulpcore::api_port}${api_path}" $content_path = '/pulp/content' $content_url = "http://${pulpcore::content_host}:${pulpcore::content_port}${content_path}"