source: dasscm/trunk/dasscm.spec@ 1243

Last change on this file since 1243 was 1243, checked in by joergs, on May 29, 2018 at 1:39:26 PM

pam-modules no longer available on openSUSE >= 15.0

  • Property svn:keywords set to Id
File size: 2.8 KB
RevLine 
[200]1#
[1159]2# Copyright (c) 2004-2013 dass IT GmbH, Koeln, Germany.
[200]3# This file and all modifications and additions to the pristine
4# package are under the same license as the package itself.
5#
[214]6# $Id: dasscm.spec 1243 2018-05-29 11:39:26Z joergs $
[200]7
[214]8Name: dasscm
[745]9URL: https://trac.dass-it.de/pub/
[1122]10License: GPL-2.0+
[214]11Group: Development/Tools/Version Control
12Autoreqprov: on
[1122]13Summary: DASS Configuration Management
[921]14Version: 1.2
[214]15Release: 0
[915]16Requires: subversion perl
[1122]17# perl-TermReadKey:
18# replaced ReadMode('noecho') by `stty -echo`
[915]19# to reduce dependencies
[746]20Source: %{name}_%{version}.orig.tar.gz
[232]21BuildRoot: %{_tmppath}/%{name}-%{version}-build
[214]22BuildArch: noarch
[246]23%if 0%{?suse_version}
[1243]24BuildRequires: gzip tar
[232]25%endif
[1123]26#BuildRequires: nagios-nrpe
[264]27
[265]28# Subversion should be installed during build
29# to have the directory /etc/subversion/ available.
30# Unfortunally, it isn't included in all distributions,
31# therefore we added some checks
[1122]32##if 0#{?suse_version} > 1100
[272]33#BuildRequires: subversion
[1122]34##endif
[263]35
[200]36
37%description
[245]38dasscm is a tool for handling configuration files with subversion
[200]39
40%prep
[745]41%setup -c
[200]42
43
44
45%build
46
[896]47
[200]48%install
[1122]49# call install script
50./dasscm.install.sh DESTDIR=$RPM_BUILD_ROOT
[932]51
[1122]52# handle special files, not useful on all distributions
[1123]53rm -f files
54touch files
55if test -e $RPM_BUILD_ROOT/etc/bash_completion.d/dasscm.sh; then
56 echo '%config(noreplace) /etc/bash_completion.d/dasscm.sh' >> files
57else
58 echo '%doc etc/bash_completion.d/bash_completion_dasscm.sh' >> files
59fi
[200]60
[1123]61if test -e $RPM_BUILD_ROOT/etc/nagios/nrpe.d/dasscm.cfg; then
62 test -d /etc/nagios || echo '%dir /etc/nagios' >> files
63 test -d /etc/nagios/nrpe.d || echo '%dir /etc/nagios/nrpe.d' >> files
64 echo '%config(noreplace) /etc/nagios/nrpe.d/dasscm.cfg' >> files
65else
66 echo '%doc etc/nagios/nrpe.d/nrpe-dasscm.cfg' >> files
67fi
[200]68
[1123]69#cat files
70
71
[200]72%clean
[896]73[ "$RPM_BUILD_ROOT" != "/" ] && rm -rf $RPM_BUILD_ROOT
[200]74
[281]75# TODO: group dasscm: 4199
[1122]76# without existing group, #attr(640,root,4199) falls back to root
[763]77# groupadd -g 4199 dasscm
[200]78
[1123]79%files -f files
[200]80%defattr(-,root,root)
[214]81%dir /var/lib/dasscm/
[916]82%dir /var/lib/dasscm/plugin-results/
[215]83/usr/bin/dasscm
[1168]84/usr/bin/dasscm_remote_check.sh
[807]85/usr/bin/dasscm_remote_update.sh
[977]86%doc doc/* subversion-servers.dass-it
[902]87
[933]88%config(noreplace) %attr(640,root,root) /etc/dasscm.conf
[1122]89%config(noreplace) /etc/profile.d/dasscm.sh
[902]90
[921]91# /etc/sudoers.d/ should not belong to dasscm,
92# but is does currently not exist on most distributions
[1233]93# on Fedora, RHEL/CentOS > 6 produces conflict with sudo package
94# if it is also owned by this package
95%if ! 0%{?fedora} && ! 0%{?rhel_version} && ! 0%{?centos_version}
[921]96%dir /etc/sudoers.d/
[1233]97%endif
[927]98# sudo requires permissions 440 and config files without any "."
99%attr(440,root,root) %config(noreplace) /etc/sudoers.d/nagios_dasscm_check
Note: See TracBrowser for help on using the repository browser.