1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
Name: attrtest
Version: 1.0
Release: 1
Summary: Testing file attr behavior
Group: Testing
License: GPL
BuildArch: noarch
%description
%{summary}
%install
rm -rf $RPM_BUILD_ROOT
for x in a b c d e f g h i j; do
mkdir -p $RPM_BUILD_ROOT/${x}
mkdir -p $RPM_BUILD_ROOT/${x}/dir
echo "${x}" > $RPM_BUILD_ROOT/${x}/file
chmod 700 $RPM_BUILD_ROOT/${x}/dir
chmod 400 $RPM_BUILD_ROOT/${x}/file
done
%files
/a/dir
/a/file
%attr(-,daemon,adm) /b/dir
%attr(-,daemon,adm) /b/file
%attr(750,-,adm) /c/dir
%attr(640,daemon,-) /c/file
%attr(751,daemon,bin) /d/dir
%attr(644,bin,daemon) /d/file
%defattr(-,foo,bar)
/e/dir
/e/file
%defattr(-,bar,foo)
%attr(770,-,-) /f/dir
%attr(660,-,-) /f/file
%defattr(-,bar,foo)
%attr(-,adm,-) /g/dir
%attr(-,-,adm) /g/file
%defattr(644,foo,bar,755)
/h/dir
/h/file
%defattr(4755,root,root,750)
%attr(-,adm,-) /i/dir
%attr(-,-,adm) /i/file
%defattr(640,zoot,zoot,750)
%attr(777,-,-) /j/dir
%attr(222,-,-) /j/file
|