diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..063becb --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +puppet-terminus-redis (0.0.1) unstable; urgency=medium + + * Initial release. + + -- Kienan Stewart Sat, 20 Nov 2021 08:18:21 -0500 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..1ad7866 --- /dev/null +++ b/debian/control @@ -0,0 +1,17 @@ +Source: puppet-terminus-redis +Section: admin +Priority: optional +Build-Depends: debhelper, debhelper-compat (= 13) +Maintainer: Kienan Stewart +Standards-Version: 4.6.0.1 +Homepage: https://gitea.burntworld.ca/kienan/puppet-terminus-redis +Vcs-Browser: https://gitea.burntworld.ca/kienan/puppet-terminus-redis +Vcs-Git: https://gitea.burntworld.ca/kienan/puppet-terminus-redis.git +Rules-Requires-Root: no + +Package: puppet-terminus-redis +Architecture: all +Depends: ${misc:Depends}, puppet-master | puppet-master-passenger, redis, ruby-redis +Description: Cache and data store terminus for puppet servers + This provides an integration for using redis as a data store for + cached facts and/or storeconfigs from a puppet server. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..3a0f15e --- /dev/null +++ b/debian/copyright @@ -0,0 +1,26 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: puppet-terminus-redis +Upstream-Contact: Kienan Stewart +Source: https://gitea.burntworld.ca/kienan/puppet-terminus-redis + +Files: * +Copyright: 2021 Kienan Stewart +License: GPL-3 + +License: GPL-3 + This package is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 3 of the License, or + (at your option) any later version. + . + This package is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + . + You should have received a copy of the GNU General Public License + along with this package; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + . + On Debian systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-3' diff --git a/debian/puppet-terminus-redis.install b/debian/puppet-terminus-redis.install new file mode 100644 index 0000000..d178ade --- /dev/null +++ b/debian/puppet-terminus-redis.install @@ -0,0 +1 @@ +lib/puppet /usr/lib/ruby/vendor_ruby/ diff --git a/debian/rules b/debian/rules new file mode 100644 index 0000000..218df65 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +%: + dh $@ diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..9f67427 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (native) \ No newline at end of file