From c631d9cdfef89f922f5baf5466925c0627171980 Mon Sep 17 00:00:00 2001 From: Nathan Kinder Date: Thu, 7 May 2015 10:59:30 -0700 Subject: Fix ownership of config and state directories The recent RPM package restructing introduced some problems with the ownership of /etc/ipsilon and /var/lib/ipsilon. These were previously owned by the 'ipsilon' user, but the changes resulted in the ownership being set as root since the 'ipsilon' user was not yet created when the directories were installed. While discussing this problem, it was determined that we should have the ownership of these directories be root, but allow other users to traverse through them so they can access subdirectories that they have permissions on. --- contrib/fedora/ipsilon.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'contrib/fedora/ipsilon.spec') diff --git a/contrib/fedora/ipsilon.spec b/contrib/fedora/ipsilon.spec index 1127944..89752e7 100644 --- a/contrib/fedora/ipsilon.spec +++ b/contrib/fedora/ipsilon.spec @@ -317,8 +317,8 @@ fi %{_datadir}/ipsilon/ui/js %{_datadir}/ipsilon/ui/fonts %{_libexecdir}/ipsilon -%dir %attr(0700,ipsilon,ipsilon) %{_sharedstatedir}/ipsilon -%dir %attr(0700,ipsilon,ipsilon) %{_sysconfdir}/ipsilon +%dir %attr(0751,root,root) %{_sharedstatedir}/ipsilon +%dir %attr(0751,root,root) %{_sysconfdir}/ipsilon %files client %{_bindir}/ipsilon-client-install -- cgit