diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000000000000000000000000000000000000..907ea84f6d0c30d40014bc4b107ef964ff05ead2 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,19 @@ +puppet-module-etcddiscovery (0.1.1-3) UNRELEASED; urgency=medium + + * Bump debhelper from old 11 to 13. + * Set upstream metadata fields: Repository, Repository-Browse. + * Update standards version to 4.5.1, no changes needed. + + -- Debian Janitor Sat, 11 Sep 2021 04:51:47 -0000 + +puppet-module-etcddiscovery (0.1.1-2) unstable; urgency=medium + + * Re-upload source-only. + + -- Thomas Goirand Wed, 28 Oct 2020 19:10:00 +0100 + +puppet-module-etcddiscovery (0.1.1-1) unstable; urgency=medium + + * Initial release. (Closes: #962957) + + -- Thomas Goirand Tue, 16 Jun 2020 16:57:58 +0200 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000000000000000000000000000000000000..d511279be2d6d273bde83d6b8821853a04270181 --- /dev/null +++ b/debian/control @@ -0,0 +1,33 @@ +Source: puppet-module-etcddiscovery +Section: admin +Priority: optional +Maintainer: Debian OpenStack +Uploaders: + Thomas Goirand , +Build-Depends: + debhelper-compat (= 13), + openstack-pkg-tools (>= 99~), + python3-all, + python3-pbr, + python3-setuptools, +Standards-Version: 4.5.1 +Vcs-Browser: https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery +Vcs-Git: https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery.git +Homepage: https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery + +Package: puppet-module-etcddiscovery +Architecture: all +Depends: + puppet, + puppet-module-openstacklib, + puppet-module-puppetlabs-inifile, + puppet-module-puppetlabs-stdlib, + ${misc:Depends}, +Description: Puppet module for Etcd-discovery service + Puppet lets you centrally manage every important aspect of your system using a + cross-platform specification language that manages all the separate elements + normally aggregated in different files, like users, cron jobs, and hosts, + along with obviously discrete elements like packages, services, and files. + . + This module manages both the installation and configuration of OpenStack + Etcd-discovery. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000000000000000000000000000000000000..b65ffb7e36bffb7b6bbc963f2df437122259cb6c --- /dev/null +++ b/debian/copyright @@ -0,0 +1,24 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: puppet-etcddiscovery +Upstream-Contact: Thomas Goirand +Source: https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery + +Files: * +Copyright: (c) 2020, Thomas Goirand +License: Apache-2.0 + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian-based systems the full text of the Apache version 2.0 license + can be found in /usr/share/common-licenses/Apache-2.0. diff --git a/debian/puppet-module-etcddiscovery.install b/debian/puppet-module-etcddiscovery.install new file mode 100644 index 0000000000000000000000000000000000000000..ce49e07db38021118145acc34c61e7d1f393fa95 --- /dev/null +++ b/debian/puppet-module-etcddiscovery.install @@ -0,0 +1,3 @@ +lib usr/share/puppet/modules.available/etcddiscovery +manifests usr/share/puppet/modules.available/etcddiscovery +metadata.json usr/share/puppet/modules.available/etcddiscovery diff --git a/debian/puppet-module-etcddiscovery.postinst b/debian/puppet-module-etcddiscovery.postinst new file mode 100755 index 0000000000000000000000000000000000000000..fa08ff5422480fc376669c2f2bcd27c6e5a9a463 --- /dev/null +++ b/debian/puppet-module-etcddiscovery.postinst @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "${1}" = "configure" ] ; then + update-alternatives --install /usr/share/puppet/modules/etcddiscovery puppet-module-etcddiscovery /usr/share/puppet/modules.available/etcddiscovery 500 +fi + +#DEBHELPER# + +exit 0 diff --git a/debian/puppet-module-etcddiscovery.postrm b/debian/puppet-module-etcddiscovery.postrm new file mode 100755 index 0000000000000000000000000000000000000000..40bde12afded5dcff74bd5831582a4659b399afa --- /dev/null +++ b/debian/puppet-module-etcddiscovery.postrm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "${1}" = "remove" ] || [ "${1}" = "disappear" ]; then + update-alternatives --remove puppet-module-etcddiscovery /usr/share/puppet/modules.available/etcddiscovery +fi + +#DEBHELPER# + +exit 0 diff --git a/debian/puppet-module-etcddiscovery.prerm b/debian/puppet-module-etcddiscovery.prerm new file mode 100755 index 0000000000000000000000000000000000000000..dea5d2134976f0602bff0815a46a119177b85531 --- /dev/null +++ b/debian/puppet-module-etcddiscovery.prerm @@ -0,0 +1,11 @@ +#!/bin/sh + +set -e + +if [ "${1}" = "remove" ] || [ "${1}" = "upgrade" ] || [ "${1}" = "deconfigure" ] ; then + update-alternatives --remove puppet-module-etcddiscovery /usr/share/puppet/modules.available/etcddiscovery +fi + +#DEBHELPER# + +exit 0 diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000000000000000000000000000000000000..d4ffc34b64104d134b50ef23ce9734f9e2cb33e9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,16 @@ +#!/usr/bin/make -f + +UPSTREAM_GIT := https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery.git +include /usr/share/openstack-pkg-tools/pkgos.make + +%: + dh $@ + +override_dh_auto_clean: + echo "Do nothing..." + +override_dh_auto_install: + echo "Don't do anything here please" + +override_dh_auto_build: + echo "Don't do anything here please" diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000000000000000000000000000000000000..163aaf8d82b6c54f23c45f32895dbdfdcc27b047 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/upstream/metadata b/debian/upstream/metadata new file mode 100644 index 0000000000000000000000000000000000000000..ec341b44dbc163e6da0ad91d1727112e47506d5f --- /dev/null +++ b/debian/upstream/metadata @@ -0,0 +1,3 @@ +--- +Repository: https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery.git +Repository-Browse: https://salsa.debian.org/openstack-team/puppet/puppet-module-etcddiscovery