blob: 7fc44f13222d64f9c47086dc00a0372928876b69 (
plain)
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
|
%define content orig
Summary: x
Name: a
Version: 1
Release: 1
License: x
Group: x
Url: x
BuildArch: noarch
%description
tee
%install
rm -rf $RPM_BUILD_ROOT
install -d $RPM_BUILD_ROOT/etc
echo %{content} > $RPM_BUILD_ROOT/etc/config-noreplace
echo %{content} > $RPM_BUILD_ROOT/etc/config
echo %{content} > $RPM_BUILD_ROOT/etc/normal
%clean
rm -rf $RPM_BUILD_ROOT
%files
%verify(not md5 size mtime) %config(noreplace) /etc/config-noreplace
%config /etc/config
/etc/normal
|