diff options
author | lutter <lutter@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-22 02:14:03 +0000 |
---|---|---|
committer | lutter <lutter@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-04-22 02:14:03 +0000 |
commit | e64bd22abed67399fd888964d6a18af60c1f3993 (patch) | |
tree | b44601da994f770827f389b285f4ad072ef60b61 | |
parent | 9fe0b375a31f16ed279e9f496d5b6a995586fcfa (diff) | |
download | puppet-e64bd22abed67399fd888964d6a18af60c1f3993.tar.gz puppet-e64bd22abed67399fd888964d6a18af60c1f3993.tar.xz puppet-e64bd22abed67399fd888964d6a18af60c1f3993.zip |
Fix ownership on server files (trac #122) Change ownership on /var/puppet
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1132 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r-- | conf/redhat/puppet.spec | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/conf/redhat/puppet.spec b/conf/redhat/puppet.spec index 38ab15222..f8baff62f 100644 --- a/conf/redhat/puppet.spec +++ b/conf/redhat/puppet.spec @@ -67,7 +67,6 @@ find %{buildroot}%{rubylibdir} -type f -perm +ugo+x -print0 | xargs -0 -r %{__ch %{_bindir}/puppet %{_sbindir}/puppetd %{rubylibdir}/* -%{_localstatedir}/puppet %{_initrddir}/puppet %config(noreplace) %{_sysconfdir}/sysconfig/puppet %config(noreplace) %{_sysconfdir}/puppet/puppetd.conf @@ -78,8 +77,10 @@ find %{buildroot}%{rubylibdir} -type f -perm +ugo+x -print0 | xargs -0 -r %{__ch # write to them %attr(-, puppet, puppet) %{_localstatedir}/run/puppet %attr(-, puppet, puppet) %{_localstatedir}/log/puppet +%attr(-, puppet, puppet) %{_localstatedir}/puppet %files server +%defattr(-, root, root, 0755) %{_sbindir}/puppetmasterd %{_initrddir}/puppetmaster %config(noreplace) %{_sysconfdir}/puppet/* @@ -120,6 +121,11 @@ fi %{__rm} -rf %{buildroot} %changelog +* Fri Apr 21 2006 David Lutterkort <dlutter@redhat.com> - 0.16.0-1 +- Fix default file permissions in server subpackage +- Run puppetmaster as user puppet +- rebuilt for 0.16.0 + * Mon Apr 17 2006 David Lutterkort <dlutter@redhat.com> - 0.15.3-2 - Don't create empty log files in post-install scriptlet @@ -127,7 +133,8 @@ fi - Rebuilt for new version * Wed Mar 22 2006 David Lutterkort <dlutter@redhat.com> - 0.15.1-1 -- Patch0: Run puppetmaster as root; running as puppet is not ready for primetime +- Patch0: Run puppetmaster as root; running as puppet is not ready + for primetime * Mon Mar 13 2006 David Lutterkort <dlutter@redhat.com> - 0.15.0-1 - Commented out noarch; requires fix for bz184199 |