diff options
Diffstat (limited to 'meta-openstack/recipes-support/puppet/puppet_3.7.3.bb')
| -rw-r--r-- | meta-openstack/recipes-support/puppet/puppet_3.7.3.bb | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/meta-openstack/recipes-support/puppet/puppet_3.7.3.bb b/meta-openstack/recipes-support/puppet/puppet_3.7.3.bb new file mode 100644 index 0000000..afd9a23 --- /dev/null +++ b/meta-openstack/recipes-support/puppet/puppet_3.7.3.bb | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | SUMMARY = "Open source Puppet is a configuration management system" | ||
| 2 | HOMEPAGE = "https://puppetlabs.com/puppet/puppet-open-source" | ||
| 3 | LICENSE = "Apache-2.0" | ||
| 4 | LIC_FILES_CHKSUM = "file://LICENSE;md5=f257790c70561550fd666c6e0044fd89" | ||
| 5 | |||
| 6 | SRC_URI = " \ | ||
| 7 | https://downloads.puppetlabs.com/puppet/puppet-${PV}.tar.gz \ | ||
| 8 | file://add_puppet_gemspec.patch \ | ||
| 9 | " | ||
| 10 | SRC_URI[md5sum] = "cc294da1d51df07bcc7f6cf78bd90ce0" | ||
| 11 | SRC_URI[sha256sum] = "4a3bd7ddb51072c3dd898a8de158cde204a2d8fd0b84e8ac806b84c074348637" | ||
| 12 | |||
| 13 | inherit ruby | ||
| 14 | |||
| 15 | DEPENDS += " \ | ||
| 16 | ruby \ | ||
| 17 | facter \ | ||
| 18 | hiera \ | ||
| 19 | " | ||
| 20 | |||
| 21 | RUBY_INSTALL_GEMS = "puppet-${PV}.gem" | ||
| 22 | |||
| 23 | do_install_append() { | ||
| 24 | install -d ${D}${sysconfdir}/puppet | ||
| 25 | install -d ${D}${sysconfdir}/puppet/manifests | ||
| 26 | install -d ${D}${sysconfdir}/puppet/modules | ||
| 27 | |||
| 28 | install -m 655 ${S}/conf/auth.conf ${D}${sysconfdir}/puppet/ | ||
| 29 | install -m 655 ${S}/conf/fileserver.conf ${D}${sysconfdir}/puppet/ | ||
| 30 | install -m 655 ${S}/conf/tagmail.conf ${D}${sysconfdir}/puppet/ | ||
| 31 | } | ||
