]> git.pld-linux.org Git - packages/php-dirs.git/commitdiff
- http group creation as group is used in %files
authorElan Ruusamäe <glen@pld-linux.org>
Thu, 23 Mar 2006 17:47:41 +0000 (17:47 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    php-dirs.spec -> 1.2

php-dirs.spec

index 54838e57fb8d0040dea49e56228905e1b5c98196..519e5ca317522c8cf1aded631b51d19e66bd7232 100644 (file)
@@ -4,10 +4,15 @@ Version:      0.9
 Release:       0.1
 License:       GPL
 Group:         Base
+BuildRequires: rpmbuild(macros) >= 1.202
+Requires(postun):      /usr/sbin/groupdel
+Requires(pre): /usr/bin/getgid
+Requires(pre): /usr/sbin/groupadd
+Provides:      group(http)
 BuildArch:     noarch
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
-%define                _phpsharedir    %{_datadir}/php
+%define                _tmpwatchdir    /etc/tmpwatch
 
 %description
 Common directories for PHP version 4 and version 5.
@@ -16,15 +21,23 @@ Common directories for PHP version 4 and version 5.
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT{%{_datadir}/php,/var/run/php,/etc/tmpwatch}
+install -d $RPM_BUILD_ROOT{%{_datadir}/php,/var/run/php,%{_tmpwatchdir}}
 
-echo '/var/run/php 720' > $RPM_BUILD_ROOT/etc/tmpwatch/php.conf
+echo '/var/run/php 720' > $RPM_BUILD_ROOT%{_tmpwatchdir}/php.conf
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
+%pre
+%groupadd -g 51 http
+
+%postun
+if [ "$1" = "0" ]; then
+       %groupremove http
+fi
+
 %files
 %defattr(644,root,root,755)
 %dir %{_datadir}/php
 %attr(770,root,http) %dir %verify(not group mode) /var/run/php
-%attr(644,root,root) %config(noreplace) %verify(not md5 mtime size) /etc/tmpwatch/php.conf
+%attr(644,root,root) %config(noreplace) %verify(not md5 mtime size) %{_tmpwatchdir}/php.conf
This page took 0.172615 seconds and 4 git commands to generate.