[arch-commits] Commit in puppet/repos (3 files)
Jonathan Steel
jsteel at archlinux.org
Wed Dec 13 12:42:53 UTC 2017
Date: Wednesday, December 13, 2017 @ 12:42:49
Author: jsteel
Revision: 274203
archrelease: copy trunk to community-testing-any
Added:
puppet/repos/community-testing-any/
puppet/repos/community-testing-any/PKGBUILD
(from rev 274202, puppet/trunk/PKGBUILD)
puppet/repos/community-testing-any/puppet.install
(from rev 274202, puppet/trunk/puppet.install)
----------------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
puppet.install | 20 ++++++++++++++++++++
2 files changed, 75 insertions(+)
Copied: puppet/repos/community-testing-any/PKGBUILD (from rev 274202, puppet/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD (rev 0)
+++ community-testing-any/PKGBUILD 2017-12-13 12:42:49 UTC (rev 274203)
@@ -0,0 +1,55 @@
+# $Id$
+# Maintainer: Jonathan Steel <jsteel at archlinux.org>
+# Contributor: Greg Sutcliffe <puppet-aur (at) emeraldreverie (dot) org>
+# Contributor: Hyacinthe Cartiaux <hyacinthe (dot) cartiaux (at) free (dot) fr>
+# Contributor: Thomas S Hatch <thatch45 (at) Gmail (dot) com>
+# Contributor: Xavion <Xavion (dot) 0 (at) Gmail (dot) com>
+# Contributor: Miah Johnson <miah (at) chia-pet dot org>
+# Contributor: Dave Simons <miouhpi (at) Gmail (dot) com>
+# Contributor: Niels Abspoel <aboe76 (at) Gmail (dot) com>
+
+pkgname=puppet
+pkgver=5.3.3
+pkgrel=1
+pkgdesc="Server automation framework and application"
+arch=('any')
+url="http://puppetlabs.com/puppet/puppet-open-source"
+license=('Apache')
+depends=('facter' 'hiera')
+optdepends=('ruby-shadow: user password management')
+backup=('etc/puppetlabs/puppet/auth.conf'
+ 'etc/puppetlabs/puppet/puppet.conf')
+install=$pkgname.install
+source=(https://downloads.puppetlabs.com/$pkgname/$pkgname-$pkgver.tar.gz)
+md5sums=('d6ea48672608cad865960cf4be4b86da')
+
+prepare() {
+ cd $pkgname-$pkgver
+
+ # FS#45044: fix file location
+ sed -i 's_/opt/puppetlabs/puppet_/usr_' ext/systemd/puppet.service
+}
+
+package() {
+ cd $pkgname-$pkgver
+
+ ruby install.rb --destdir="$pkgdir" --sitelibdir="$( ruby -e \
+ 'puts RbConfig::CONFIG["vendorlibdir"]' )"
+
+ install -d "$pkgdir"/{var/lib/$pkgname,usr/lib/tmpfiles.d}
+
+ echo "d /run/puppetlabs 0755 $pkgname $pkgname -" > \
+ "$pkgdir"/usr/lib/tmpfiles.d/$pkgname.conf
+
+ # systemd
+ install -Dm644 "$srcdir"/$pkgname-$pkgver/ext/systemd/$pkgname.service \
+ "$pkgdir"/usr/lib/systemd/system/$pkgname.service
+
+ install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+
+ # Match permissions that puppet sets when running
+ chmod 775 "$pkgdir"/var/lib/puppet
+ chmod 750 "$pkgdir"/var/log/puppetlabs/puppet
+
+ rm -r "$pkgdir"/var/run
+}
Copied: puppet/repos/community-testing-any/puppet.install (from rev 274202, puppet/trunk/puppet.install)
===================================================================
--- community-testing-any/puppet.install (rev 0)
+++ community-testing-any/puppet.install 2017-12-13 12:42:49 UTC (rev 274203)
@@ -0,0 +1,20 @@
+pre_install() {
+ getent group puppet &>/dev/null || groupadd -r puppet -g 52
+ getent passwd puppet &>/dev/null || useradd -r -u 52 -g puppet \
+ -d /var/lib/puppet -s /usr/bin/nologin -c "Puppet" puppet
+}
+
+pre_upgrade() {
+ pre_install
+
+ # puppetmaster has been dropped
+ if [[ -f /run/puppetlabs/master.pid ]]; then
+ systemctl stop puppetmaster
+ fi
+}
+
+pre_remove() {
+ if [[ -f /run/puppetlabs/agent.pid ]]; then
+ systemctl stop puppet
+ fi
+}
More information about the arch-commits
mailing list