blob: a3fa6eed959377c63ee7a70586b14ce17243066f (
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
|
%define content orig
Summary: x
Name: a
Version: 2
Release: 1
License: 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
|