From 6c46b6852f425e11548434c3f37a40e56917bc77 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Wed, 30 Jul 2014 21:08:49 +0200 Subject: [PATCH] Create specs.o.o/index.html Create a static specs.o.o page, it contains the content of currently published spec files. Change-Id: Ief2807a4f48d1526dc6ebac0dc9777c3c01d4a5e --- .../openstack_project/files/specs/index.html | 137 ++++++++++++++++++ modules/openstack_project/manifests/static.pp | 8 + 2 files changed, 145 insertions(+) create mode 100644 modules/openstack_project/files/specs/index.html diff --git a/modules/openstack_project/files/specs/index.html b/modules/openstack_project/files/specs/index.html new file mode 100644 index 0000000000..3de7f690e9 --- /dev/null +++ b/modules/openstack_project/files/specs/index.html @@ -0,0 +1,137 @@ + + + OpenStack Specifications + + + + + + + + + + + + + + + + + + + + + + +
+
+
+

+ Need help with a development problem? + + Ask OpenStack + +

+
+
+
+ +
+ +
+

+

+
+
+
+ + + + diff --git a/modules/openstack_project/manifests/static.pp b/modules/openstack_project/manifests/static.pp index c25477782f..bf4d64f8a4 100644 --- a/modules/openstack_project/manifests/static.pp +++ b/modules/openstack_project/manifests/static.pp @@ -297,4 +297,12 @@ class openstack_project::static ( require => User['jenkins'], } + file { '/srv/static/specs/index.html': + ensure => present, + owner => 'jenkins', + group => 'jenkins', + mode => '0444', + source => 'puppet:///modules/openstack_project/specs/index.html', + require => File['/srv/static/specs'], + } }